[Ffmpeg-cvslog] r7682 - trunk/libavformat/mov.c
bcoudurier
subversion
Wed Jan 24 11:57:39 CET 2007
Author: bcoudurier
Date: Wed Jan 24 11:57:38 2007
New Revision: 7682
Modified:
trunk/libavformat/mov.c
Log:
remove useless field
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Wed Jan 24 11:57:38 2007
@@ -271,7 +271,6 @@
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_size;
int64_t mdat_offset;
int total_streams;
MOVStreamContext *streams[MAX_STREAMS];
@@ -505,7 +504,6 @@
c->mdat_count++;
c->found_mdat=1;
c->mdat_offset = atom.offset;
- c->mdat_size = atom.size;
if(c->found_moov)
return 1; /* found both, just go */
url_fskip(pb, atom.size);
More information about the ffmpeg-cvslog
mailing list