summaryrefslogtreecommitdiff
authorLianlian Zhu <lianlian.zhu@amlogic.com>2017-05-10 06:55:03 (GMT)
committer Lianlian Zhu <lianlian.zhu@amlogic.com>2017-05-10 07:01:35 (GMT)
commit27bd1805995fb76df2b07525fc9544ce4a7b859f (patch)
tree0525cd9d232a7f241dfa6dcc26f4c95250511a34
parent853dcfe4e6d6855dc31caa377ad808f6804d7982 (diff)
downloadffmpeg-27bd1805995fb76df2b07525fc9544ce4a7b859f.zip
ffmpeg-27bd1805995fb76df2b07525fc9544ce4a7b859f.tar.gz
ffmpeg-27bd1805995fb76df2b07525fc9544ce4a7b859f.tar.bz2
PD#144030: audio:enlarge analyzeduration to get some special stream audioinfo
Change-Id: I777f42c1bf88da8eee9bdec888ed2d898f0dc0a6
Diffstat
-rw-r--r--libavformat/options_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/options_table.h b/libavformat/options_table.h
index 8145325..b729c7c 100644
--- a/libavformat/options_table.h
+++ b/libavformat/options_table.h
@@ -50,7 +50,7 @@ static const AVOption avformat_options[] = {
{"latm", "enable RTP MP4A-LATM payload", 0, AV_OPT_TYPE_CONST, {.i64 = AVFMT_FLAG_MP4A_LATM }, INT_MIN, INT_MAX, E, "fflags"},
{"nobuffer", "reduce the latency introduced by optional buffering", 0, AV_OPT_TYPE_CONST, {.i64 = AVFMT_FLAG_NOBUFFER }, 0, INT_MAX, D, "fflags"},
{"seek2any", "allow seeking to non-keyframes on demuxer level when supported", OFFSET(seek2any), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, D},
-{"analyzeduration", "specify how many microseconds are analyzed to probe the input", OFFSET(max_analyze_duration), AV_OPT_TYPE_INT, {.i64 = 5*AV_TIME_BASE }, 0, INT_MAX, D},
+{"analyzeduration", "specify how many microseconds are analyzed to probe the input", OFFSET(max_analyze_duration), AV_OPT_TYPE_INT, {.i64 = 10*AV_TIME_BASE }, 0, INT_MAX, D},
{"cryptokey", "decryption key", OFFSET(key), AV_OPT_TYPE_BINARY, {.dbl = 0}, 0, 0, D},
{"indexmem", "max memory used for timestamp index (per stream)", OFFSET(max_index_size), AV_OPT_TYPE_INT, {.i64 = 1<<20 }, 0, INT_MAX, D},
{"rtbufsize", "max memory used for buffering real-time frames", OFFSET(max_picture_buffer), AV_OPT_TYPE_INT, {.i64 = 3041280 }, 0, INT_MAX, D}, /* defaults to 1s of 15fps 352x288 YUYV422 video */