summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudiodec.c
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:04:26 +0200
commit54e1eaef6787104083cbc9c9834ea4d13612df9f (patch)
tree37192dfe956c78b1619d358293b6fbee7ff17853 /libavcodec/mpegaudiodec.c
parent8ba987bff3004de6952ccab90d9b8acc6135a37a (diff)
mp3dec: Dont spam the user on multiple mp3 frames.
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-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;
}