diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-12 11:16:38 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-24 18:04:19 +0100 |
commit | 1381e9bc92e54f0c3472a1f7150a8530ccd55379 (patch) | |
tree | 175afd741b36c51352f2cad6096b5a372c8d3ae6 | |
parent | dc7ad30fa5b3d454a3edcc3b051aef3a65c5235b (diff) | |
download | ffmpeg-1381e9bc92e54f0c3472a1f7150a8530ccd55379.tar.gz |
lavc: postpone the removal of AVCodecContext.request_channels.
Although it has been deprecated for a long time, its intended
replacement (request_channel_layout) is not actually used anywhere, so
request_channels is currently the only way to access that functionality.
-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 1de790e3d9..22a2b87798 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -51,7 +51,7 @@ #define FF_API_ANTIALIAS_ALGO (LIBAVCODEC_VERSION_MAJOR < 54) #endif #ifndef FF_API_REQUEST_CHANNELS -#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 54) +#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 55) #endif #ifndef FF_API_OPT_H #define FF_API_OPT_H (LIBAVCODEC_VERSION_MAJOR < 54) |