diff options
author | James Almer <jamrial@gmail.com> | 2021-04-19 09:57:46 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 11:48:05 -0300 |
commit | fe95a37144077d1f652088fcb25b2949e4a3da19 (patch) | |
tree | 721bbcd82dc963106fc35f7f2d1f922897a4b2c9 | |
parent | cb9dbc60db1847fcb594684b92334da54ea8757e (diff) | |
download | ffmpeg-fe95a37144077d1f652088fcb25b2949e4a3da19.tar.gz |
avcodec: postpone removal of deprecated libopenh264 wrapper options
They were deprecated only a year ago
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 5df01c0111..94469d6d98 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -52,10 +52,10 @@ */ #ifndef FF_API_OPENH264_SLICE_MODE -#define FF_API_OPENH264_SLICE_MODE (LIBAVCODEC_VERSION_MAJOR < 59) +#define FF_API_OPENH264_SLICE_MODE (LIBAVCODEC_VERSION_MAJOR < 60) #endif #ifndef FF_API_OPENH264_CABAC -#define FF_API_OPENH264_CABAC (LIBAVCODEC_VERSION_MAJOR < 59) +#define FF_API_OPENH264_CABAC (LIBAVCODEC_VERSION_MAJOR < 60) #endif #ifndef FF_API_UNUSED_CODEC_CAPS #define FF_API_UNUSED_CODEC_CAPS (LIBAVCODEC_VERSION_MAJOR < 60) |