mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
dont seek back if no sync to let eof happen
Originally committed as revision 6628 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c2095a8f5c
commit
4a775c19cd
@ -1030,7 +1030,6 @@ static int mxf_probe(AVProbeData *p) {
|
||||
static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
|
||||
{
|
||||
AVStream *st = s->streams[stream_index];
|
||||
offset_t pos = url_ftell(&s->pb);
|
||||
int64_t seconds;
|
||||
int i;
|
||||
|
||||
@ -1051,7 +1050,6 @@ static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_ti
|
||||
av_update_cur_dts(s, st, sample_time);
|
||||
return 0;
|
||||
}
|
||||
url_fseek(&s->pb, pos, SEEK_SET);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user