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

bcoudurier subversion
Mon Jun 28 23:02:16 CEST 2010


Author: bcoudurier
Date: Mon Jun 28 23:02:16 2010
New Revision: 23864

Log:
In mov demuxer, increase total size after debugging message

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	Mon Jun 28 22:38:36 2010	(r23863)
+++ trunk/libavformat/mov.c	Mon Jun 28 23:02:16 2010	(r23864)
@@ -265,9 +265,9 @@ static int mov_read_default(MOVContext *
             a.size = get_be32(pb);
             a.type = get_le32(pb);
         }
-        total_size += 8;
         dprintf(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
+        total_size += 8;
         if (a.size == 1) { /* 64 bit extended size */
             a.size = get_be64(pb) - 8;
             total_size += 8;



More information about the ffmpeg-cvslog mailing list