diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-08 09:55:23 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-08 09:55:23 +0000 |
commit | 1975c52c2adafbaa76b4c47fd1d30facef27e057 (patch) | |
tree | cfcf56490492513e7c209957460306b12d977c75 | |
parent | 9e8d61d4f1b285f77e6b3642c8658e7408207fa0 (diff) | |
download | ffmpeg-1975c52c2adafbaa76b4c47fd1d30facef27e057.tar.gz |
remove useless field
Originally committed as revision 17052 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 5b9d9c20ea..698240ae2d 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -113,7 +113,6 @@ typedef struct MOVStreamContext { MOVStts *stts_data; unsigned int ctts_count; MOVStts *ctts_data; - unsigned int edit_count; /* number of 'edit' (elst atom) */ unsigned int sample_to_chunk_sz; MOVStsc *sample_to_chunk; int sample_to_ctime_index; @@ -1762,7 +1761,7 @@ static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom) get_byte(pb); /* version */ get_be24(pb); /* flags */ - edit_count= sc->edit_count = get_be32(pb); /* entries */ + edit_count = get_be32(pb); /* entries */ for(i=0; i<edit_count; i++){ int time; |