1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

vp3: be less spammy on broken files

Originally committed as revision 22356 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
David Conrad 2010-03-09 00:29:09 +00:00
parent 8fdd542ce4
commit 01f9640b21

View File

@ -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;
} }