mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avformat/matroskadec: Check subtitle stream before dereferencing
Unrecognized streams are not allocated Fixes: flicker-1.color1.vp91447030769.08.webm Found-by: Chris Cunningham <chcunningham@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit a5034b324cad4c29d47ef285a30b0705e6eb0384) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
71a3113333
commit
b70f7d20e1
@ -3088,6 +3088,7 @@ static int matroska_read_seek(AVFormatContext *s, int stream_index,
|
||||
tracks[i].audio.buf_timecode = AV_NOPTS_VALUE;
|
||||
tracks[i].end_timecode = 0;
|
||||
if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
|
||||
tracks[i].stream &&
|
||||
tracks[i].stream->discard != AVDISCARD_ALL) {
|
||||
index_sub = av_index_search_timestamp(
|
||||
tracks[i].stream, st->index_entries[index].timestamp,
|
||||
|
Loading…
x
Reference in New Issue
Block a user