Commit b42863af authored by bcoudurier's avatar bcoudurier

remove useless field

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17052 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a0543090
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment