Commit ed845795 authored by michael's avatar michael

fix assertion failure in case of timestamp discontinuities


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3592 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e321403f
......@@ -932,7 +932,8 @@ int av_add_index_entry(AVStream *st,
}else{
ie= &entries[index];
if(ie->timestamp != timestamp){
assert(ie->timestamp > timestamp);
if(ie->timestamp <= timestamp)
return -1;
memmove(entries + index + 1, entries + index, sizeof(AVIndexEntry)*(st->nb_index_entries - index));
st->nb_index_entries++;
}else if(ie->pos == pos && distance < ie->min_distance) //dont reduce the distance
......
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