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

bcoudurier subversion
Sun Dec 16 19:46:57 CET 2007


Author: bcoudurier
Date: Sun Dec 16 19:46:57 2007
New Revision: 11242

Log:
remove now useless fields

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Sun Dec 16 19:46:57 2007
@@ -115,7 +115,6 @@ typedef struct MOVContext {
     int64_t duration; /* duration of the longest track */
     int found_moov; /* when both 'moov' and 'mdat' sections has been found */
     int found_mdat; /* we suppose we have enough data to read the file */
-    int64_t mdat_offset;
     AVPaletteControl palette_control;
     MOV_mdat_t *mdat_list;
     int mdat_count;
@@ -319,7 +318,6 @@ static int mov_read_mdat(MOVContext *c, 
     c->mdat_list[c->mdat_count].size = atom.size;
     c->mdat_count++;
     c->found_mdat=1;
-    c->mdat_offset = atom.offset;
     if(c->found_moov)
         return 1; /* found both, just go */
     url_fskip(pb, atom.size);




More information about the ffmpeg-cvslog mailing list