mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
fix seeking, typo provoking hard segfault
Originally committed as revision 5402 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c7e63546dc
commit
dae5b496fd
@ -2103,7 +2103,7 @@ static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_ti
|
|||||||
msc->current_sample += (msc->sample_to_chunk[msc->sample_to_chunk_index + 1].first - msc->sample_to_chunk[msc->sample_to_chunk_index].first) \
|
msc->current_sample += (msc->sample_to_chunk[msc->sample_to_chunk_index + 1].first - msc->sample_to_chunk[msc->sample_to_chunk_index].first) \
|
||||||
* msc->sample_to_chunk[msc->sample_to_chunk_index].count;
|
* msc->sample_to_chunk[msc->sample_to_chunk_index].count;
|
||||||
}
|
}
|
||||||
msc->current_sample += (msc->next_chunk - (msc->sample_to_chunk[msc->sample_to_chunk_index].first - 1)) * sc->sample_to_chunk[msc->sample_to_chunk_index].count;
|
msc->current_sample += (msc->next_chunk - (msc->sample_to_chunk[msc->sample_to_chunk_index].first - 1)) * msc->sample_to_chunk[msc->sample_to_chunk_index].count;
|
||||||
msc->left_in_chunk = msc->sample_to_chunk[msc->sample_to_chunk_index].count - 1;
|
msc->left_in_chunk = msc->sample_to_chunk[msc->sample_to_chunk_index].count - 1;
|
||||||
// Find corresponding position in stts (used later to compute dts)
|
// Find corresponding position in stts (used later to compute dts)
|
||||||
sample = 0;
|
sample = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user