From: Dustin Brody Date: Mon, 16 Jan 2012 13:25:04 +0000 (-0500) Subject: mpegaudiodec: switch error detection check to AV_EF_BUFFER X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d2a0041c2075a553bb8d4f94591f8556680190c8;p=ffmpeg mpegaudiodec: switch error detection check to AV_EF_BUFFER Signed-off-by: Anton Khirnov --- diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 6a06afa6800..a83b1621fd9 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -985,7 +985,7 @@ static int huffman_decode(MPADecodeContext *s, GranuleDef *g, /* skip extension bits */ bits_left = end_pos2 - get_bits_count(&s->gb); //av_log(NULL, AV_LOG_ERROR, "left:%d buf:%p\n", bits_left, s->in_gb.buffer); - if (bits_left < 0 && (s->err_recognition & AV_EF_BITSTREAM)) { + if (bits_left < 0 && (s->err_recognition & AV_EF_BUFFER)) { av_log(s->avctx, AV_LOG_ERROR, "bits_left=%d\n", bits_left); s_index=0; } else if (bits_left > 0 && (s->err_recognition & AV_EF_BUFFER)) {