Commit 25552699 authored by Diego Biurrun's avatar Diego Biurrun

mpegaudio: Do not print value of uninitialized variable

libavcodec/mpegaudiodec_template.c:885:97: warning: variable 'x' is uninitialized when used here [-Wuninitialized]
parent 14cab426
...@@ -877,8 +877,8 @@ static int huffman_decode(MPADecodeContext *s, GranuleDef *g, ...@@ -877,8 +877,8 @@ static int huffman_decode(MPADecodeContext *s, GranuleDef *g,
exponent= exponents[s_index]; exponent= exponents[s_index];
ff_dlog(s->avctx, "region=%d n=%d x=%d y=%d exp=%d\n", ff_dlog(s->avctx, "region=%d n=%d y=%d exp=%d\n",
i, g->region_size[i] - j, x, y, exponent); i, g->region_size[i] - j, y, exponent);
if (y & 16) { if (y & 16) {
x = y >> 5; x = y >> 5;
y = y & 0x0f; y = y & 0x0f;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment