diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-08-19 17:49:58 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-08-25 05:17:54 +0000 |
commit | b263f8ffe7599d9cd27ec477a12700da8eb2790d (patch) | |
tree | 767e7de253a0b6ed3ef1b7e817b9b87f736d593f /libavformat/avformat.h | |
parent | 6ca11f7157d0ffd11ea9a4211b04981b46dc75d6 (diff) | |
download | ffmpeg-streaming-b263f8ffe7599d9cd27ec477a12700da8eb2790d.zip ffmpeg-streaming-b263f8ffe7599d9cd27ec477a12700da8eb2790d.tar.gz |
lavf: add AVFormatContext.max_ts_probe
It allows to configure how long will avformat_find_stream_info() wait
to get the first timestamp.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 5b29145..923b282 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1192,6 +1192,12 @@ typedef struct AVFormatContext { int event_flags; #define AVFMT_EVENT_FLAG_METADATA_UPDATED 0x0001 ///< The call resulted in updated metadata. + /** + * Maximum number of packets to read while waiting for the first timestamp. + * Decoding only. + */ + int max_ts_probe; + /***************************************************************** * All fields below this line are not part of the public API. They * may not be used outside of libavformat and can be changed and |