diff options
author | James Almer <jamrial@gmail.com> | 2019-08-13 22:09:34 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-01-01 13:48:02 -0300 |
commit | 278a91f8fe192944292b134cd47d853c6b1d55d8 (patch) | |
tree | b84a83a52a6e1612cc3ceacd9d33a44e4d6f19ad /doc/encoders.texi | |
parent | 3c22436ddf5995dd2be7f54c0301a737e22056c8 (diff) | |
download | ffmpeg-278a91f8fe192944292b134cd47d853c6b1d55d8.tar.gz |
avcodec/libx265: add a qp option and apply the relevant global AVCodecContext settings to the encoder context
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'doc/encoders.texi')
-rw-r--r-- | doc/encoders.texi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi index 673eaf6496..61e674cf96 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -2441,6 +2441,28 @@ Set profile restrictions. @item crf Set the quality for constant quality mode. +@item qp +Set constant quantization rate control method parameter. + +@item qmin +Minimum quantizer scale. + +@item qmax +Maximum quantizer scale. + +@item qdiff +Maximum difference between quantizer scales. + +@item qblur +Quantizer curve blur + +@item qcomp +Quantizer curve compression factor + +@item i_qfactor + +@item b_qfactor + @item forced-idr Normally, when forcing a I-frame type, the encoder can select any type of I-frame. This option forces it to choose an IDR-frame. |