mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-22 23:33:07 +00:00
avidec: skip seek pos adjustment for non interleaved files.
Fixes Ticket327 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4ce0a94656
commit
72b0c9f55f
@ -1410,7 +1410,7 @@ static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp
|
||||
flags | AVSEEK_FLAG_BACKWARD | (st2->codec->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
|
||||
if(index<0)
|
||||
index=0;
|
||||
while(index>0 && st2->index_entries[index-1].pos >= pos_min)
|
||||
while(!avi->non_interleaved && index>0 && st2->index_entries[index-1].pos >= pos_min)
|
||||
index--;
|
||||
ast2->frame_offset = st2->index_entries[index].timestamp;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user