diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-02 13:34:12 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 08:43:11 +0200 |
commit | 4e3945fd2875c497d25f49a3c35cd6cf6577259e (patch) | |
tree | 7d60d30d8833c13f859474fc9f3b576a4940b116 /libavcodec/avcodec.h | |
parent | 4a49d2d59cce5d10b8ac40ca0185ccf1f8deb99c (diff) | |
download | ffmpeg-4e3945fd2875c497d25f49a3c35cd6cf6577259e.tar.gz |
lavc: deprecate AVCodecContext.antialias_algo
It's been unused since mp3float decoder was added.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index eb355b0b33..95a933dcfc 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2153,16 +2153,19 @@ typedef struct AVCodecContext { */ int error_rate; +#if FF_API_ANTIALIAS_ALGO /** * MP3 antialias algorithm, see FF_AA_* below. * - encoding: unused * - decoding: Set by user. */ - int antialias_algo; + attribute_deprecated int antialias_algo; #define FF_AA_AUTO 0 #define FF_AA_FASTINT 1 //not implemented yet #define FF_AA_INT 2 #define FF_AA_FLOAT 3 +#endif + /** * quantizer noise shaping * - encoding: Set by user. |