Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-22 09:55:34 +0400
committerAnton Khirnov <anton@khirnov.net>2011-08-24 16:33:40 +0400
commit4ae30cac228e0987faa528e7e6305a52712b5ad9 (patch)
tree07ec7d48ca633d0a9a9b78be24c00a9c47bb0a3a /libavcodec/avcodec.h
parentc5dd0bc4ca977924825a74080ff1c294dda01427 (diff)
libx264: add 'crf_max' private option.
Deprecate corresponding global option.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
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;