diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-14 16:07:03 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-12-02 17:40:40 -0500 |
commit | 560f773c7ddd17f66e2621222980c1359a9027be (patch) | |
tree | f4f410aa8b692a0ebe713f72d4c13018f053c455 /libavcodec/version.h | |
parent | 9b9815eec4231d9efea7cd5c6a18c09c2ebff310 (diff) | |
download | ffmpeg-560f773c7ddd17f66e2621222980c1359a9027be.tar.gz |
avcodec: change number of plane pointers from 4 to 8 at next major bump.
Add AV_NUM_DATA_POINTERS to simplify the bump transition.
This will allow for supporting more planar audio channels without having to
allocate separate pointer arrays.
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 0bd17817ec..7262c81544 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -21,7 +21,7 @@ #define AVCODEC_VERSION_H #define LIBAVCODEC_VERSION_MAJOR 53 -#define LIBAVCODEC_VERSION_MINOR 23 +#define LIBAVCODEC_VERSION_MINOR 24 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ @@ -110,6 +110,8 @@ #ifndef FF_API_TIFFENC_COMPLEVEL #define FF_API_TIFFENC_COMPLEVEL (LIBAVCODEC_VERSION_MAJOR < 54) #endif - +#ifndef FF_API_DATA_POINTERS +#define FF_API_DATA_POINTERS (LIBAVCODEC_VERSION_MAJOR < 54) +#endif #endif /* AVCODEC_VERSION_H */ |