decrease last_offset when ftyp is present
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Mon, 10 Apr 2006 17:18:35 +0000 (17:18 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Mon, 10 Apr 2006 17:18:35 +0000 (17:18 +0000)
Originally committed as revision 5283 to svn://svn.ffmpeg.org/ffmpeg/trunk

qt-faststart.c

index 2cc6863..f9de435 100644 (file)
@@ -243,8 +243,11 @@ int main(int argc, char *argv[])
         free(moov_atom);
         return 1;
     }
-    /* seek after ftyp atom if needed */
-    fseeko(infile, start_offset, SEEK_SET);
+
+    if (start_offset > 0) { /* seek after ftyp atom */
+        fseeko(infile, start_offset, SEEK_SET);
+        last_offset -= start_offset;
+    }
 
     outfile = fopen(argv[2], "wb");
     if (!outfile) {