From 927e92cdc7f442a526ba1266420181d4418c02f3 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 31 Jul 2012 15:44:00 +0200 Subject: mpegaudiodec: don't print an error on > 1 frame in a packet. It's a perfectly normal situation, nothing to spam about. --- libavcodec/mpegaudiodec.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index c33b12a354..03094f6260 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -1663,7 +1663,6 @@ static int decode_frame(AVCodecContext * avctx, void *data, int *got_frame_ptr, av_log(avctx, AV_LOG_ERROR, "incomplete frame\n"); return AVERROR_INVALIDDATA; } else if (s->frame_size < buf_size) { - av_log(avctx, AV_LOG_ERROR, "incorrect frame size\n"); buf_size= s->frame_size; } -- cgit v1.2.3