diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-08-27 21:45:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-08-27 21:45:26 +0000 |
commit | ee3bc9d386eb821e27c57adc2d9bc0766c89289d (patch) | |
tree | 02dfb795046d264ea2845fb64156951671870580 /libavcodec/mpegaudiodec.c | |
parent | ec6913d267cb728cf4009c4c5cf1bacda59cb044 (diff) | |
download | ffmpeg-ee3bc9d386eb821e27c57adc2d9bc0766c89289d.tar.gz |
overread AV_LOG_ERROR -> AV_LOG_DEBUG
Originally committed as revision 6111 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-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 27a622c7d4..f3e19d7fa7 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -1771,7 +1771,7 @@ static int huffman_decode(MPADecodeContext *s, GranuleDef *g, part. We must go back into the data */ s_index -= 4; skip_bits_long(&s->gb, last_pos - pos); - av_log(NULL, AV_LOG_ERROR, "overread, skip %d\n", last_pos&7); + av_log(NULL, AV_LOG_DEBUG, "overread, skip %d\n", last_pos - pos); } if(pos >= end_pos) break; |