diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 13:51:16 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-10-18 05:23:51 +0200 |
commit | a75c2eb25a62105c09b48521aef429dc8a231637 (patch) | |
tree | 231f63b8fe78db74313fd999794d84d8f1b3b509 /libavcodec/avcodec.h | |
parent | 946f95354ba76ef73c9b66889d86ab5fba4fb486 (diff) | |
download | ffmpeg-a75c2eb25a62105c09b48521aef429dc8a231637.tar.gz |
lavc: make rc_eq into private options of mpegvideo encoders
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c025c5c3dc..bd1a0e53cb 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2110,12 +2110,13 @@ typedef struct AVCodecContext { int rc_override_count; RcOverride *rc_override; +#if FF_API_MPV_OPT /** - * rate control equation - * - encoding: Set by user - * - decoding: unused + * @deprecated use encoder private options instead */ + attribute_deprecated const char *rc_eq; +#endif /** * maximum bitrate |