You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
wtv: ignore empty data_guid chunks
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
committed by
Ronald S. Bultje
parent
5cbd3b5d91
commit
1a973feb45
@@ -892,7 +892,7 @@ static int parse_chunks(AVFormatContext *s, int mode, int64_t seekts, int *len_p
|
|||||||
}
|
}
|
||||||
} else if (!ff_guidcmp(g, data_guid)) {
|
} else if (!ff_guidcmp(g, data_guid)) {
|
||||||
int stream_index = ff_find_stream_index(s, sid);
|
int stream_index = ff_find_stream_index(s, sid);
|
||||||
if (mode == SEEK_TO_DATA && stream_index >= 0) {
|
if (mode == SEEK_TO_DATA && stream_index >= 0 && len > 32) {
|
||||||
WtvStream *wst = s->streams[stream_index]->priv_data;
|
WtvStream *wst = s->streams[stream_index]->priv_data;
|
||||||
wst->seen_data = 1;
|
wst->seen_data = 1;
|
||||||
if (len_ptr) {
|
if (len_ptr) {
|
||||||
|
Reference in New Issue
Block a user