]> git.sesse.net Git - ffmpeg/commitdiff
Merge commit '255526998501f0040ae43fe4848c817a97fc578a'
authorClément Bœsch <u@pkh.me>
Fri, 24 Mar 2017 12:14:03 +0000 (13:14 +0100)
committerClément Bœsch <u@pkh.me>
Fri, 24 Mar 2017 12:14:03 +0000 (13:14 +0100)
* commit '255526998501f0040ae43fe4848c817a97fc578a':
  mpegaudio: Do not print value of uninitialized variable

Merged-by: Clément Bœsch <u@pkh.me>
libavcodec/mpegaudiodec_template.c

index 6e94cf75f329a597e21008cee67377eb3861d8ef..ec109b3d4555962225422bcecc45a7a8ddb7e889 100644 (file)
@@ -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;