diff options
author | Chris Rankin <rankincj@yahoo.com> | 2011-09-08 21:04:26 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-08 21:14:03 +0200 |
commit | f4e34d161415d4f81e72115c1567a032540c36bf (patch) | |
tree | 38296885b87531aed4c3f0166993d601a6dff545 | |
parent | 61f55565fb96158a70ddc56c9e44312ffbd3cce5 (diff) | |
download | ffmpeg-f4e34d161415d4f81e72115c1567a032540c36bf.tar.gz |
mp3dec: Dont spam the user on multiple mp3 frames.
(cherry picked from commit 54e1eaef6787104083cbc9c9834ea4d13612df9f)
-rw-r--r-- | libavcodec/mpegaudiodec.c | 2 |
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; } |