[FFmpeg-cvslog] r12516 - trunk/libavformat/mov.c

bcoudurier subversion
Thu Mar 20 17:07:55 CET 2008


Author: bcoudurier
Date: Thu Mar 20 17:07:55 2008
New Revision: 12516

Log:
remove useless debug print since now mov_build_index will do

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Thu Mar 20 17:07:55 2008
@@ -1001,10 +1001,8 @@ static int mov_read_stsz(MOVContext *c, 
     sc->sample_sizes = av_malloc(entries * sizeof(int));
     if (!sc->sample_sizes)
         return -1;
-    for(i=0; i<entries; i++) {
+    for(i=0; i<entries; i++)
         sc->sample_sizes[i] = get_be32(pb);
-        dprintf(c->fc, "sample_sizes[]=%d\n", sc->sample_sizes[i]);
-    }
     return 0;
 }
 




More information about the ffmpeg-cvslog mailing list