[FFmpeg-cvslog] r22499 - trunk/libavcodec/vp3.c

conrad subversion
Sat Mar 13 06:59:18 CET 2010


Author: conrad
Date: Sat Mar 13 06:59:18 2010
New Revision: 22499

Log:
vp3: remove unneeded error, this is internal and doesn't happen

Modified:
   trunk/libavcodec/vp3.c

Modified: trunk/libavcodec/vp3.c
==============================================================================
--- trunk/libavcodec/vp3.c	Sat Mar 13 06:56:15 2010	(r22498)
+++ trunk/libavcodec/vp3.c	Sat Mar 13 06:59:18 2010	(r22499)
@@ -464,11 +464,6 @@ static int unpack_superblocks(Vp3DecodeC
 
             /* if the fragment is in bounds, check its coding status */
             current_fragment = s->superblock_fragments[i * 16 + j];
-            if (current_fragment >= s->fragment_count) {
-                av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_superblocks(): bad fragment number (%d >= %d)\n",
-                    current_fragment, s->fragment_count);
-                return 1;
-            }
             if (current_fragment != -1) {
                 int coded = s->superblock_coding[i];
 



More information about the ffmpeg-cvslog mailing list