ffmpeg | branch: master | Clément Bœsch <u...@pkh.me> | Fri Mar 24 13:14:03 2017 +0100| [fe7cae38801f63c4c99708f11f1f1d21cb06f255] | committer: Clément Bœsch
Merge commit '255526998501f0040ae43fe4848c817a97fc578a' * commit '255526998501f0040ae43fe4848c817a97fc578a': mpegaudio: Do not print value of uninitialized variable Merged-by: Clément Bœsch <u...@pkh.me> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fe7cae38801f63c4c99708f11f1f1d21cb06f255 --- libavcodec/mpegaudiodec_template.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpegaudiodec_template.c b/libavcodec/mpegaudiodec_template.c index 6e94cf7..ec109b3 100644 --- a/libavcodec/mpegaudiodec_template.c +++ b/libavcodec/mpegaudiodec_template.c @@ -898,8 +898,8 @@ static int huffman_decode(MPADecodeContext *s, GranuleDef *g, exponent= exponents[s_index]; - ff_dlog(s->avctx, "region=%d n=%d x=%d y=%d exp=%d\n", - i, g->region_size[i] - j, x, y, exponent); + ff_dlog(s->avctx, "region=%d n=%d y=%d exp=%d\n", + i, g->region_size[i] - j, y, exponent); if (y & 16) { x = y >> 5; y = y & 0x0f; ====================================================================== _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog