You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mpegaudio: Do not print value of uninitialized variable
libavcodec/mpegaudiodec_template.c:885:97: warning: variable 'x' is uninitialized when used here [-Wuninitialized]
This commit is contained in:
@@ -877,8 +877,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;
|
||||
|
Reference in New Issue
Block a user