mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/utils: scan a bit farther for a keyframe in mpeg/mpegts (7 sec instead of 5, we already scan 90sec in some cases by default)
Fixes Ticket5305 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
d4773c94a6
commit
6e65b9bb1f
@ -3208,6 +3208,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
|
||||
max_subtitle_analyze_duration = 30*AV_TIME_BASE;
|
||||
if (!strcmp(ic->iformat->name, "flv"))
|
||||
max_stream_analyze_duration = 90*AV_TIME_BASE;
|
||||
if (!strcmp(ic->iformat->name, "mpeg") || !strcmp(ic->iformat->name, "mpegts"))
|
||||
max_stream_analyze_duration = 7*AV_TIME_BASE;
|
||||
}
|
||||
|
||||
if (ic->pb)
|
||||
|
Loading…
Reference in New Issue
Block a user