diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-12-16 18:46:57 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-12-16 18:46:57 +0000 |
commit | 282b65ccfff3a2b6f3e9aa28e850530f3bdc7b6c (patch) | |
tree | 3740cca46c1af0bac0be370fa347cbd2a7a6fe9b /libavformat/mov.c | |
parent | 7c622eede5d9867a7cdb5c8c4ed46afb1b757676 (diff) | |
download | ffmpeg-282b65ccfff3a2b6f3e9aa28e850530f3bdc7b6c.tar.gz |
remove now useless fields
Originally committed as revision 11242 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 2bd9d887e5..4405dcb5d2 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -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); |