diff options
author | Martin Storsjö <martin@martin.st> | 2012-03-19 23:12:54 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-09-12 23:42:16 +0300 |
commit | 62c9ae11a7f9716848de0c26df855d6b8071eb16 (patch) | |
tree | c818e9f9e796471ac7b6310d04868c995d6bed9b /libavformat/version.h | |
parent | 29a9b12b10c91c638205da74f3330acd06517ae8 (diff) | |
download | ffmpeg-62c9ae11a7f9716848de0c26df855d6b8071eb16.tar.gz |
Add a smooth streaming segmenter muxer
This muxer splits the output from the ismv muxer into individual
files, in realtime.
The same can also be done by the standalone tool ismindex, but this
muxer is needed for doing it in realtime (especially for live
streams that need extra handling for updating the lookahead fields
in the fragment headers).
Using this muxer, one can deliver live smooth streaming from a
normal static file web server. (Using ismindex, one can deliver
premade smooth streaming files from a static file web server,
or prepare files for serving with IIS.)
Signed-off-by: Martin Storsjö <martin@martin.st>
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 a90f01ae02..fa4d49a33a 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,7 +30,7 @@ #include "libavutil/avutil.h" #define LIBAVFORMAT_VERSION_MAJOR 54 -#define LIBAVFORMAT_VERSION_MINOR 15 +#define LIBAVFORMAT_VERSION_MINOR 16 #define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |