diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-18 13:30:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-18 13:30:38 +0200 |
commit | 74128352047ee3fb075b0f69ab16047f70b45a42 (patch) | |
tree | 944418d43c9d6c56865bd06f14ad6af46748a443 /libavcodec/avcodec.h | |
parent | 17d16008befa82cb79e71fbb4dc28fb4d9ec2ce6 (diff) | |
parent | a6e4ce9fd50897dc6d9c2ada4b6b8090de7de5bf (diff) | |
download | ffmpeg-74128352047ee3fb075b0f69ab16047f70b45a42.tar.gz |
Merge commit 'a6e4ce9fd50897dc6d9c2ada4b6b8090de7de5bf'
* commit 'a6e4ce9fd50897dc6d9c2ada4b6b8090de7de5bf':
lavc: make rc_qsquish a private option of mpegvideo encoders
Conflicts:
libavcodec/avcodec.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3d6f7b9333..6ed830445e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2271,13 +2271,13 @@ typedef struct AVCodecContext { */ int max_qdiff; +#if FF_API_MPV_OPT /** - * ratecontrol qmin qmax limiting method - * 0-> clipping, 1-> use a nice continuous function to limit qscale within qmin/qmax. - * - encoding: Set by user. - * - decoding: unused + * @deprecated use encoder private options instead */ + attribute_deprecated float rc_qsquish; +#endif float rc_qmod_amp; int rc_qmod_freq; |