diff options
author | Joakim Roubert <jokke@df.lth.se> | 2014-09-19 10:01:28 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-10-03 20:20:28 +0300 |
commit | 55f03d872640175a00bfa262da4652b7312b905f (patch) | |
tree | 71065483f9e2ea28d0335fa7087c3d7342daa533 /libavformat/version.h | |
parent | d10d1b86550d254bd1e746ed613bf6885978879c (diff) | |
download | ffmpeg-55f03d872640175a00bfa262da4652b7312b905f.tar.gz |
hlsenc: Add parameter -hls_allow_cache
The -hls_allow_cache parameter enables explicitly setting the
EXT-X-ALLOW-CACHE tag in the manifest file. That tag indicates
whether the client MAY or MUST NOT cache downloaded media
segments for later replay.
Valid values are 1 (=YES) or 0 (=NO) and the EXT-X-ALLOW-CACHE
will not show in the manifest for other values (or if
-hls_allow_cache is not used.
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 688c84a50e..bc956d52ea 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -31,7 +31,7 @@ #define LIBAVFORMAT_VERSION_MAJOR 56 #define LIBAVFORMAT_VERSION_MINOR 5 -#define LIBAVFORMAT_VERSION_MICRO 0 +#define LIBAVFORMAT_VERSION_MICRO 1 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |