aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Rankin <rankincj@yahoo.com>2011-09-08 21:04:26 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-08 21:14:10 +0200
commitb2c9e9be870d2abcd2f85c9c0e3af5d1be3ac9e5 (patch)
tree427c5617db13f88ab5683dc23fe210de544abfef
parent076a8dfd411b77cd0b993581daf7ed7a313f017f (diff)
downloadffmpeg-b2c9e9be870d2abcd2f85c9c0e3af5d1be3ac9e5.tar.gz
mp3dec: Dont spam the user on multiple mp3 frames.
(cherry picked from commit 54e1eaef6787104083cbc9c9834ea4d13612df9f)
-rw-r--r--libavcodec/mpegaudiodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index 56a48ce71b..9fbae0c316 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -1809,7 +1809,7 @@ static int decode_frame(AVCodecContext * avctx,
av_log(avctx, AV_LOG_ERROR, "incomplete frame\n");
return -1;
}else if(s->frame_size < buf_size){
- av_log(avctx, AV_LOG_ERROR, "incorrect frame size\n");
+ av_log(avctx, AV_LOG_DEBUG, "incorrect frame size - multiple frames in buffer?\n");
buf_size= s->frame_size;
}