diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-27 19:09:49 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-29 07:23:31 +0100 |
commit | 63efd83ae10a158e3ae0823e3527f3845dda397a (patch) | |
tree | 6d0031e3c22a062d4777be4183627143f59c20eb /libavcodec/avcodec.h | |
parent | af3d804f9feebe34ad3815c501fba795b801cdd0 (diff) | |
download | ffmpeg-63efd83ae10a158e3ae0823e3527f3845dda397a.tar.gz |
mpegvideo_enc: add chroma/luma_elim_threshold private options.
Deprecate corresponding AVCodecContext fields.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5677c0bce5..01da5a6258 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1439,19 +1439,21 @@ typedef struct AVCodecContext { int b_frame_strategy; +#if FF_API_MPV_GLOBAL_OPTS /** * luma single coefficient elimination threshold * - encoding: Set by user. * - decoding: unused */ - int luma_elim_threshold; + attribute_deprecated int luma_elim_threshold; /** * chroma single coeff elimination threshold * - encoding: Set by user. * - decoding: unused */ - int chroma_elim_threshold; + attribute_deprecated int chroma_elim_threshold; +#endif /** * qscale offset between IP and B-frames |