diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-27 19:58:41 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-29 07:25:44 +0100 |
commit | 16b7557b794c6cd47c5a256a246f8c930c01eef7 (patch) | |
tree | 4336eca7bbaf2627010f0f6ec3a70f27109472f7 /libavcodec/avcodec.h | |
parent | 4f07f8196c23cf49cc074eef65ab50134085018f (diff) | |
download | ffmpeg-16b7557b794c6cd47c5a256a246f8c930c01eef7.tar.gz |
lavc: deprecate AVCodecContext.inter_threshold.
It's unused.
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 d8c7416be9..a9fc31e900 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1750,12 +1750,12 @@ typedef struct AVCodecContext { */ int noise_reduction; +#if FF_API_INTER_THRESHOLD /** - * - * - encoding: Set by user. - * - decoding: unused + * @deprecated this field is unused */ - int inter_threshold; + attribute_deprecated int inter_threshold; +#endif /** * quantizer noise shaping |