diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-06 07:31:32 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-13 13:50:17 +0200 |
commit | d6ead39ee7c6b21a7e5f44defed7339673b026b6 (patch) | |
tree | f0b06106ebb7d03e453f36442381dd2a6bc8b749 | |
parent | 548e62c5aedcf86a08c3c423b9367e94727ad86b (diff) | |
download | ffmpeg-d6ead39ee7c6b21a7e5f44defed7339673b026b6.tar.gz |
lavc: postpone removal of audioconvert and sample_fmt wrappers
Those were moved to libavutil only recently.
-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 78c0f7808d..ef9e560f2f 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -66,10 +66,10 @@ #define FF_API_INOFFICIAL (LIBAVCODEC_VERSION_MAJOR < 53) #endif #ifndef FF_API_OLD_SAMPLE_FMT -#define FF_API_OLD_SAMPLE_FMT (LIBAVCODEC_VERSION_MAJOR < 53) +#define FF_API_OLD_SAMPLE_FMT (LIBAVCODEC_VERSION_MAJOR < 54) #endif #ifndef FF_API_OLD_AUDIOCONVERT -#define FF_API_OLD_AUDIOCONVERT (LIBAVCODEC_VERSION_MAJOR < 53) +#define FF_API_OLD_AUDIOCONVERT (LIBAVCODEC_VERSION_MAJOR < 54) #endif #ifndef FF_API_HURRY_UP #define FF_API_HURRY_UP (LIBAVCODEC_VERSION_MAJOR < 53) |