diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-02 12:14:22 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-02 22:37:59 +0100 |
commit | 910247f1720c6aae422723c05dac6d0b19f20bec (patch) | |
tree | 5f9fd6156cdb9d2e2d9111ad56e987127d7b1568 /libavcodec/avcodec.h | |
parent | 1316df7aa98c4784f190d107206d0bb12c590b89 (diff) | |
download | ffmpeg-910247f1720c6aae422723c05dac6d0b19f20bec.tar.gz |
lavc: Deprecate avctx.{inter,intra}_quant_bias
They are used by dnxhd and mpegvideo_enc exclusively, move them to codec
private options instead.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7191e8b538..08f50a1f0c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1563,20 +1563,18 @@ typedef struct AVCodecContext { */ int me_range; +#if FF_API_QUANT_BIAS /** - * intra quantizer bias - * - encoding: Set by user. - * - decoding: unused + * @deprecated use encoder private option instead */ - int intra_quant_bias; + attribute_deprecated int intra_quant_bias; #define FF_DEFAULT_QUANT_BIAS 999999 /** - * inter quantizer bias - * - encoding: Set by user. - * - decoding: unused + * @deprecated use encoder private option instead */ - int inter_quant_bias; + attribute_deprecated int inter_quant_bias; +#endif /** * slice flags |