summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-01-24 10:57:38 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-01-24 10:57:38 +0000
commita20a37e69a59493a3fa60007d3b610248b623ccb (patch)
tree11ee13fe71e7b261a4eb7c5cd9955dfe6a1281b1 /libavformat/mov.c
parent69e7070da6d247ccc191ad971d05ded915d444d6 (diff)
remove useless field
Originally committed as revision 7682 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 604efb8391..ca694a9b87 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -271,7 +271,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_size;
int64_t mdat_offset;
int total_streams;
MOVStreamContext *streams[MAX_STREAMS];
@@ -505,7 +504,6 @@ static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
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);