mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Merge commit '255526998501f0040ae43fe4848c817a97fc578a'
* commit '255526998501f0040ae43fe4848c817a97fc578a': mpegaudio: Do not print value of uninitialized variable Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
fe7cae3880
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user