提交 c9247fc3 编写于 作者: M Michael Niedermayer

dont reduce the min_distance of AVIndexEntry

Originally committed as revision 2979 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 21f52609
......@@ -915,6 +915,9 @@ int av_add_index_entry(AVStream *st,
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
distance= ie->min_distance;
}
}else{
index= st->nb_index_entries++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册