diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-27 20:06:23 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-29 07:26:24 +0100 |
commit | 23bfcc066d468e2ec6159be2f5af3d5a59f40d79 (patch) | |
tree | 00c37a92ba7055dd7aae9b3453a6e88a96300f49 /libavcodec/avcodec.h | |
parent | 16b7557b794c6cd47c5a256a246f8c930c01eef7 (diff) | |
download | ffmpeg-23bfcc066d468e2ec6159be2f5af3d5a59f40d79.tar.gz |
mpegvideo_enc: add quantizer_noise_shaping private option.
Deprecate corresponding AVCodecContext field.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a9fc31e900..f4db08335a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1757,12 +1757,12 @@ typedef struct AVCodecContext { attribute_deprecated int inter_threshold; #endif +#if FF_API_MPV_GLOBAL_OPTS /** - * quantizer noise shaping - * - encoding: Set by user. - * - decoding: unused + * @deprecated use mpegvideo private options instead */ - int quantizer_noise_shaping; + attribute_deprecated int quantizer_noise_shaping; +#endif /** * Motion estimation threshold below which no motion estimation is |