diff options
author | James Almer <jamrial@gmail.com> | 2017-11-26 16:47:26 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-12-06 15:43:59 -0300 |
commit | d6d605eb05c3ca32f591016c345eb2ad9e81c554 (patch) | |
tree | 8d6893a14081c9e60b056b3c2f47cce29abc15c0 /libavformat/avformat.h | |
parent | 5a412a5c3cc216ae1d15e6b884bda7214b73a5b0 (diff) | |
download | ffmpeg-d6d605eb05c3ca32f591016c345eb2ad9e81c554.tar.gz |
avformat/mux: stop delaying writing the header
Every bitstream filter behaves as intended now, so there's no need to
wait for the first packet of every stream.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 322210fae0..4f2798a871 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1449,7 +1449,7 @@ typedef struct AVFormatContext { #endif #define AVFMT_FLAG_FAST_SEEK 0x80000 ///< Enable fast, but inaccurate seeks for some formats #define AVFMT_FLAG_SHORTEST 0x100000 ///< Stop muxing when the shortest stream stops. -#define AVFMT_FLAG_AUTO_BSF 0x200000 ///< Wait for packet data before writing a header, and add bitstream filters as requested by the muxer +#define AVFMT_FLAG_AUTO_BSF 0x200000 ///< Add bitstream filters as requested by the muxer /** * Maximum size of the data read from input for determining |