OSDN Git Service

vp3: be less spammy on broken files
authorDavid Conrad <lessen42@gmail.com>
Tue, 9 Mar 2010 00:29:09 +0000 (00:29 +0000)
committerDavid Conrad <lessen42@gmail.com>
Tue, 9 Mar 2010 00:29:09 +0000 (00:29 +0000)
Originally committed as revision 22356 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vp3.c

index 44f0986..78cae0f 100644 (file)
@@ -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;
                 }