Commit c51dce95 authored by conrad's avatar conrad

vp3: be less spammy on broken files

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22356 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1c35378b
...@@ -987,7 +987,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb, ...@@ -987,7 +987,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
} }
if (coeff_index + zero_run > 64) { 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); " %d coeffs left\n", zero_run, 64-coeff_index);
zero_run = 64 - coeff_index; zero_run = 64 - coeff_index;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment