Commit 528c2c73 authored by Michael Niedermayer's avatar Michael Niedermayer

fix assertion failure in case of timestamp discontinuities

Originally committed as revision 3592 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6e1f8725
...@@ -932,7 +932,8 @@ int av_add_index_entry(AVStream *st, ...@@ -932,7 +932,8 @@ int av_add_index_entry(AVStream *st,
}else{ }else{
ie= &entries[index]; ie= &entries[index];
if(ie->timestamp != timestamp){ 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)); memmove(entries + index + 1, entries + index, sizeof(AVIndexEntry)*(st->nb_index_entries - index));
st->nb_index_entries++; st->nb_index_entries++;
}else if(ie->pos == pos && distance < ie->min_distance) //dont reduce the distance }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