fix compilation with DEBUG defined
Originally committed as revision 19015 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e695906ec7
commit
19c0563ac2
@ -90,20 +90,20 @@ int ff_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header)
|
||||
}
|
||||
|
||||
#if defined(DEBUG)
|
||||
dprintf(s->avctx, "layer%d, %d Hz, %d kbits/s, ",
|
||||
dprintf(NULL, "layer%d, %d Hz, %d kbits/s, ",
|
||||
s->layer, s->sample_rate, s->bit_rate);
|
||||
if (s->nb_channels == 2) {
|
||||
if (s->layer == 3) {
|
||||
if (s->mode_ext & MODE_EXT_MS_STEREO)
|
||||
dprintf(s->avctx, "ms-");
|
||||
dprintf(NULL, "ms-");
|
||||
if (s->mode_ext & MODE_EXT_I_STEREO)
|
||||
dprintf(s->avctx, "i-");
|
||||
dprintf(NULL, "i-");
|
||||
}
|
||||
dprintf(s->avctx, "stereo");
|
||||
dprintf(NULL, "stereo");
|
||||
} else {
|
||||
dprintf(s->avctx, "mono");
|
||||
dprintf(NULL, "mono");
|
||||
}
|
||||
dprintf(s->avctx, "\n");
|
||||
dprintf(NULL, "\n");
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user