diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-01 13:15:09 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-06 21:03:41 +0200 |
commit | 7042337673ee75300a6f668fbcf3074213b06977 (patch) | |
tree | 1dcd58c1710c927ab18719a10650deb3008bdf33 /libavcodec/avcodec.h | |
parent | 71b5f4427b3c17eeea9903aa3bd091db81222c6d (diff) | |
download | ffmpeg-7042337673ee75300a6f668fbcf3074213b06977.tar.gz |
libx264: add 'cplxblur' private option
Deprecate AVCodecContext.complexityblur
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 8a51c5865f..828382a0b5 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2449,14 +2449,14 @@ typedef struct AVCodecContext { */ int trellis; +#if FF_API_X264_GLOBAL_OPTS /** * Reduce fluctuations in qp (before curve compression). * - encoding: Set by user. * - decoding: unused */ - float complexityblur; + attribute_deprecated float complexityblur; -#if FF_API_X264_GLOBAL_OPTS /** * in-loop deblocking filter alphac0 parameter * alpha is in the range -6...6 |