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:33:40 +0200 |
commit | 4ae30cac228e0987faa528e7e6305a52712b5ad9 (patch) | |
tree | 07ec7d48ca633d0a9a9b78be24c00a9c47bb0a3a /libavcodec/avcodec.h | |
parent | c5dd0bc4ca977924825a74080ff1c294dda01427 (diff) | |
download | ffmpeg-4ae30cac228e0987faa528e7e6305a52712b5ad9.tar.gz |
libx264: add 'crf_max' 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 414b1502f1..c0dcae5094 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2764,7 +2764,6 @@ typedef struct AVCodecContext { * - decoding: unused */ attribute_deprecated int rc_lookahead; -#endif /** * Constant rate factor maximum @@ -2773,7 +2772,8 @@ typedef struct AVCodecContext { * - encoding: Set by user. * - decoding: unused */ - float crf_max; + attribute_deprecated float crf_max; +#endif int log_level_offset; |