diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-01-13 15:38:13 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-29 17:03:25 +0200 |
commit | a9a7e215e5207e674338b7ca9eb74e96ae5faf99 (patch) | |
tree | e308a84a4bb963dc301bb0c9af2d722c9c3bdd8f /libavformat/version.h | |
parent | 3cd4f9fd76d626f3168393b55549440a2cb8e716 (diff) | |
download | ffmpeg-a9a7e215e5207e674338b7ca9eb74e96ae5faf99.tar.gz |
lavf/segment: add stream_segment variant of the segment muxer
This simplifies usage for segment streaming formats with no global
headers, tipically MPEG 2 transport stream "ts" files.
The seg class duplication is required in order to avoid an infinite loop
in libavformat/utils.c:format_child_next_class().
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 34b8a075b1..7057e2ccce 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,8 +30,8 @@ #include "libavutil/avutil.h" #define LIBAVFORMAT_VERSION_MAJOR 54 -#define LIBAVFORMAT_VERSION_MINOR 11 -#define LIBAVFORMAT_VERSION_MICRO 101 +#define LIBAVFORMAT_VERSION_MINOR 12 +#define LIBAVFORMAT_VERSION_MICRO 100 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |