summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-04-02 13:34:12 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-03 08:43:11 +0200
commit4e3945fd2875c497d25f49a3c35cd6cf6577259e (patch)
tree7d60d30d8833c13f859474fc9f3b576a4940b116 /libavcodec/avcodec.h
parent4a49d2d59cce5d10b8ac40ca0185ccf1f8deb99c (diff)
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.h5
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.