diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-22 10:43:40 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-24 18:04:19 +0100 |
commit | af0292f33a7d9a024a10a05748415622ea45e08e (patch) | |
tree | 7a98b5e961799331d3b8caa73e81ccde7a0cfb1d /libavcodec/version.h | |
parent | 75e2025f57fef5060d74c65d9654e61c35bd6c81 (diff) | |
download | ffmpeg-af0292f33a7d9a024a10a05748415622ea45e08e.tar.gz |
lavc: postpone removing old audio encoding and decoding API
It has been deprecated only recently.
Diffstat (limited to 'libavcodec/version.h')
-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 77e16823f9..1de790e3d9 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -114,13 +114,13 @@ #define FF_API_DATA_POINTERS (LIBAVCODEC_VERSION_MAJOR < 54) #endif #ifndef FF_API_OLD_DECODE_AUDIO -#define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 54) +#define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 55) #endif #ifndef FF_API_AVFRAME_AGE #define FF_API_AVFRAME_AGE (LIBAVCODEC_VERSION_MAJOR < 54) #endif #ifndef FF_API_OLD_ENCODE_AUDIO -#define FF_API_OLD_ENCODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 54) +#define FF_API_OLD_ENCODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 55) #endif #endif /* AVCODEC_VERSION_H */ |