mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
lavf: filter out AVSEEK_FLAG_BACKWARD in new API.
Also document that it has no effect.
This commit is contained in:
parent
cc24afb45c
commit
3fc66dfef2
@ -1687,6 +1687,7 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
|
||||
* or if stream_index is -1, in AV_TIME_BASE units.
|
||||
* If flags contain AVSEEK_FLAG_ANY, then non-keyframes are treated as
|
||||
* keyframes (this may not be supported by all demuxers).
|
||||
* If flags contain AVSEEK_FLAG_BACKWARD, it is ignored.
|
||||
*
|
||||
* @param stream_index index of the stream which is used as time base reference
|
||||
* @param min_ts smallest acceptable timestamp
|
||||
|
@ -2164,6 +2164,7 @@ int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int
|
||||
|
||||
if(s->seek2any>0)
|
||||
flags |= AVSEEK_FLAG_ANY;
|
||||
flags &= ~AVSEEK_FLAG_BACKWARD;
|
||||
|
||||
if (s->iformat->read_seek2) {
|
||||
int ret;
|
||||
|
Loading…
Reference in New Issue
Block a user