diff options
author | Matsuzawa Tomohiro <thmatuza75@hotmail.com> | 2018-10-23 04:34:29 +0000 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2018-10-23 19:42:48 +0200 |
commit | c2ac3b8e6a040e33d53fa13548848c8ba981a8e4 (patch) | |
tree | f26dfa26220095c59fa42dcd9fd41615bc20e5ea /libavformat/version.h | |
parent | 110b4a491859e6e635f6513670785a9378c9551b (diff) | |
download | ffmpeg-c2ac3b8e6a040e33d53fa13548848c8ba981a8e4.tar.gz |
avformat/libsrt: add several options supported in srt 1.3.0
Several SRT options are missing. Since pkg_config requires libsrt v1.3.0 and above, it should be able to support options added in libsrt v1.3.0 and below.
This commit adds 8 SRT options.
sndbuf, rcvbuf, lossmaxttl, minversion, streamid, smoother, messageapi and transtype
The keys of option are equivalent to stransmit.
https://github.com/Haivision/srt/blob/v1.3.0/apps/socketoptions.hpp#L196-L223
Signed-off-by: Marton Balint <cus@passwd.hu>
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 e2d0cfd414..855c3dba2b 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -33,7 +33,7 @@ // Also please add any ticket numbers that you believe might be affected here #define LIBAVFORMAT_VERSION_MAJOR 58 #define LIBAVFORMAT_VERSION_MINOR 19 -#define LIBAVFORMAT_VERSION_MICRO 101 +#define LIBAVFORMAT_VERSION_MICRO 102 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |