diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-22 07:55:34 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-24 14:31:55 +0200 |
commit | d4b967131842e7c225e5f83cb82337d4474a0bb7 (patch) | |
tree | 34dda9a88eb314c8db28417ed959e4a314c14968 /libavcodec/avcodec.h | |
parent | 2a44a8f6091913bad14c4df318ceeb68dc4a9258 (diff) | |
download | ffmpeg-d4b967131842e7c225e5f83cb82337d4474a0bb7.tar.gz |
libx264: add 'rc_lookahead' private option.
Deprecate corresponding global option.
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 c36c35e686..77544e3837 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2756,7 +2756,6 @@ typedef struct AVCodecContext { * - decoding: unused */ attribute_deprecated float psy_trellis; -#endif /** * RC lookahead @@ -2764,7 +2763,8 @@ typedef struct AVCodecContext { * - encoding: Set by user * - decoding: unused */ - int rc_lookahead; + attribute_deprecated int rc_lookahead; +#endif /** * Constant rate factor maximum |