diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-25 16:00:33 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-03 03:24:16 -0700 |
commit | 9f17685dfb70a73823aca16ad246ee3b831d1de8 (patch) | |
tree | 4c5e11ae4f4588016041ac24bf769b01ab5ff8e3 /libavcodec/version.h | |
parent | bad81800bb51f43d28d656abf5d45b477e3b3198 (diff) | |
download | ffmpeg-9f17685dfb70a73823aca16ad246ee3b831d1de8.tar.gz |
avcodec: Deprecate unused defines and options
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index d521221a2d..cd35ae6769 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -30,7 +30,7 @@ #define LIBAVCODEC_VERSION_MAJOR 55 #define LIBAVCODEC_VERSION_MINOR 57 -#define LIBAVCODEC_VERSION_MICRO 0 +#define LIBAVCODEC_VERSION_MICRO 1 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ @@ -129,6 +129,9 @@ #ifndef FF_API_ARCH_SPARC #define FF_API_ARCH_SPARC (LIBAVCODEC_VERSION_MAJOR < 56) #endif +#ifndef FF_API_UNUSED_MEMBERS +#define FF_API_UNUSED_MEMBERS (LIBAVCODEC_VERSION_MAJOR < 56) +#endif #ifndef FF_API_INPUT_PRESERVED #define FF_API_INPUT_PRESERVED (LIBAVCODEC_VERSION_MAJOR < 57) #endif |