summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-03-09 00:29:09 +0000
committerDavid Conrad <lessen42@gmail.com>2010-03-09 00:29:09 +0000
commit01f9640b21f159cc8a9d292ce8a70feb7dbc2ea7 (patch)
tree98fb1746a6620b08f202eee66b91c5a277efe78c /libavcodec/vp3.c
parent8fdd542ce4c357d38b4601e9a327f499c9a096f1 (diff)
vp3: be less spammy on broken files
Originally committed as revision 22356 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 44f0986baa..78cae0f21e 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -987,7 +987,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
}
if (coeff_index + zero_run > 64) {
- av_log(s->avctx, AV_LOG_ERROR, "Invalid zero run of %d with"
+ av_log(s->avctx, AV_LOG_DEBUG, "Invalid zero run of %d with"
" %d coeffs left\n", zero_run, 64-coeff_index);
zero_run = 64 - coeff_index;
}