diff options
author | Kieran Kunhya <kierank@obe.tv> | 2014-08-03 19:24:56 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-03 15:43:02 -0700 |
commit | 1ef9e8376466bb1e2c147e47554b94cab9c8b04a (patch) | |
tree | eccb333b18ff0e037c9b2956f12e752ade4ef0c5 /libavcodec/version.h | |
parent | d0393d79bc3d61c9f2ff832c0e273b7774ff0269 (diff) | |
download | ffmpeg-1ef9e8376466bb1e2c147e47554b94cab9c8b04a.tar.gz |
avcodec: Deprecate dtg_active_format field in favor of avframe side-data
Signed-off-by: Diego Biurrun <diego@biurrun.de>
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 cd35ae6769..2c22adb35d 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 1 +#define LIBAVCODEC_VERSION_MICRO 2 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ @@ -147,5 +147,8 @@ #ifndef FF_API_CODEC_NAME #define FF_API_CODEC_NAME (LIBAVCODEC_VERSION_MAJOR < 57) #endif +#ifndef FF_API_AFD +#define FF_API_AFD (LIBAVCODEC_VERSION_MAJOR < 57) +#endif #endif /* AVCODEC_VERSION_H */ |