lavc: deprecate AVCodecContext.antialias_algo

It's been unused since mp3float decoder was added.
This commit is contained in:
Anton Khirnov
2011-04-02 13:34:12 +02:00
parent 4a49d2d59c
commit 4e3945fd28
3 changed files with 9 additions and 1 deletions

View File

@@ -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.