diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-10 00:38:48 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-10 00:38:48 +0200 |
commit | 65cb02e87a8f188657843e3e7d91ef19ac8f1629 (patch) | |
tree | 66143fdb1985308f3fe28266263a62b9c7ecaa90 | |
parent | a57ece0cb48ba131a2d6ba9d4525d9195238f18c (diff) | |
download | ffmpeg-65cb02e87a8f188657843e3e7d91ef19ac8f1629.tar.gz |
avcodec/version: delay removial of FF_API_AUDIO_CONVERT/FF_API_AVCODEC_RESAMPLE
Some applications still use this deprecated API
Its not nice to remove it when its still in use and as long as it doesnt
cause us any work to keep it.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index ffecae03e8..08471046a5 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -64,7 +64,7 @@ #define FF_API_CODEC_ID (LIBAVCODEC_VERSION_MAJOR < 57) #endif #ifndef FF_API_AUDIO_CONVERT -#define FF_API_AUDIO_CONVERT (LIBAVCODEC_VERSION_MAJOR < 56) +#define FF_API_AUDIO_CONVERT (LIBAVCODEC_VERSION_MAJOR < 57) #endif #ifndef FF_API_AVCODEC_RESAMPLE #define FF_API_AVCODEC_RESAMPLE FF_API_AUDIO_CONVERT |