Commit fe7cae38 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '25552699'

* commit '25552699':
  mpegaudio: Do not print value of uninitialized variable
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 3a3791a5 25552699
......@@ -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;
......
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