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

bcoudurier subversion
Sun Feb 8 10:55:23 CET 2009


Author: bcoudurier
Date: Sun Feb  8 10:55:23 2009
New Revision: 17052

Log:
remove useless field

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	Sun Feb  8 10:48:59 2009	(r17051)
+++ trunk/libavformat/mov.c	Sun Feb  8 10:55:23 2009	(r17052)
@@ -113,7 +113,6 @@ typedef struct MOVStreamContext {
     MOVStts *stts_data;
     unsigned int ctts_count;
     MOVStts *ctts_data;
-    unsigned int edit_count; /* number of 'edit' (elst atom) */
     unsigned int sample_to_chunk_sz;
     MOVStsc *sample_to_chunk;
     int sample_to_ctime_index;
@@ -1762,7 +1761,7 @@ static int mov_read_elst(MOVContext *c, 
 
     get_byte(pb); /* version */
     get_be24(pb); /* flags */
-    edit_count= sc->edit_count = get_be32(pb);     /* entries */
+    edit_count = get_be32(pb); /* entries */
 
     for(i=0; i<edit_count; i++){
         int time;




More information about the ffmpeg-cvslog mailing list