summaryrefslogtreecommitdiffstats
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-09-11 00:58:37 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-09-11 01:12:28 +0200
commitf58e011a1f30332ba824c155078ca701e29aef63 (patch)
treecc6652bc448ed8be162e2e5ed8a87ea5ab995516 /libavformat/utils.c
parent77d03b0ebb7bd83782fd47848de7b82368d625ba (diff)
downloadffmpeg-streaming-f58e011a1f30332ba824c155078ca701e29aef63.zip
ffmpeg-streaming-f58e011a1f30332ba824c155078ca701e29aef63.tar.gz
avformat/utils: Increase default max_stream_analyze_duration for flv
Fixes: unknown_video.flv Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 660a4ff..db988c0 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3113,7 +3113,7 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
max_analyze_duration = 5*AV_TIME_BASE;
max_subtitle_analyze_duration = 30*AV_TIME_BASE;
if (!strcmp(ic->iformat->name, "flv"))
- max_stream_analyze_duration = 30*AV_TIME_BASE;
+ max_stream_analyze_duration = 90*AV_TIME_BASE;
}
if (ic->pb)
OpenPOWER on IntegriCloud