# HG changeset patch
# User bcoudurier
# Date 1169636258 0
# Node ID 05e2cabcd8edb03e246572b705f5697253c4e341
# Parent  94580a2253ffd93a525acac2e19d2d09102236a4
remove useless field

diff -r 94580a2253ff -r 05e2cabcd8ed mov.c
--- a/mov.c	Wed Jan 24 10:56:45 2007 +0000
+++ b/mov.c	Wed Jan 24 10:57:38 2007 +0000
@@ -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);