mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
remove now useless fields
Originally committed as revision 11242 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7c622eede5
commit
282b65ccff
@ -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, ByteIOContext *pb, MOV_atom_t atom)
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user