diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2016-06-24 22:02:50 -0500 |
---|---|---|
committer | Rodger Combs <rodger.combs@gmail.com> | 2016-10-24 03:53:21 -0500 |
commit | a246fef163387c0d79830a9bdf408443a9aba1c1 (patch) | |
tree | ba5a56853e481e34c2cf2dcceaae00cb0b2ae883 /libavformat/version.h | |
parent | 8a24e03684cad4b8207a0317123ca2bd544d012e (diff) | |
download | ffmpeg-a246fef163387c0d79830a9bdf408443a9aba1c1.tar.gz |
lavf/mux: add avformat_init_output
This allows a consumer to run the muxer's init function without actually
writing the header, which is useful in chained muxers that support
automatic bitstream filtering.
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 88b69e968c..addff03f45 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -32,7 +32,7 @@ // Major bumping may affect Ticket5467, 5421, 5451(compatibility with Chromium) // Also please add any ticket numbers that you believe might be affected here #define LIBAVFORMAT_VERSION_MAJOR 57 -#define LIBAVFORMAT_VERSION_MINOR 53 +#define LIBAVFORMAT_VERSION_MINOR 54 #define LIBAVFORMAT_VERSION_MICRO 100 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |