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:04:26 +0200 |
commit | 54e1eaef6787104083cbc9c9834ea4d13612df9f (patch) | |
tree | 37192dfe956c78b1619d358293b6fbee7ff17853 /libavcodec | |
parent | 8ba987bff3004de6952ccab90d9b8acc6135a37a (diff) | |
download | ffmpeg-54e1eaef6787104083cbc9c9834ea4d13612df9f.tar.gz |
mp3dec: Dont spam the user on multiple mp3 frames.
Diffstat (limited to 'libavcodec')
-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; } |