# HG changeset patch # User michael # Date 1141229464 0 # Node ID b644fe79f7a2807518db9c61aa5d64a1f4cf16b2 # Parent 558381bf97d289cf34c1110a2ad24f9582680d68 fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that) diff -r 558381bf97d2 -r b644fe79f7a2 avidec.c --- a/avidec.c Wed Mar 01 15:42:07 2006 +0000 +++ b/avidec.c Wed Mar 01 16:11:04 2006 +0000 @@ -87,6 +87,7 @@ } static int read_braindead_odml_indx(AVFormatContext *s, int frame_num){ + AVIContext *avi = s->priv_data; ByteIOContext *pb = &s->pb; int longs_pre_entry= get_le16(pb); int index_sub_type = get_byte(pb); @@ -98,6 +99,7 @@ AVStream *st; AVIStream *ast; int i; + int64_t last_pos= -1; // av_log(s, AV_LOG_ERROR, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%Ld\n", // longs_pre_entry,index_type, entries_in_use, chunk_id, base); @@ -125,12 +127,16 @@ len &= 0x7FFFFFFF; //av_log(s, AV_LOG_ERROR, "pos:%Ld, len:%X\n", pos, len); - av_add_index_entry(st, pos, ast->cum_len, len, 0, key ? AVINDEX_KEYFRAME : 0); + if(last_pos == pos || pos == base - 8) + avi->non_interleaved= 1; + else + av_add_index_entry(st, pos, ast->cum_len, len, 0, key ? AVINDEX_KEYFRAME : 0); if(ast->sample_size) ast->cum_len += len / ast->sample_size; else ast->cum_len ++; + last_pos= pos; }else{ int64_t offset= get_le64(pb); int size = get_le32(pb);