AMF icon indicating copy to clipboard operation
AMF copied to clipboard

Document which rate control methods use which further configuation options

Open e00E opened this issue 2 years ago • 2 comments

The video encoders have several rate control methods like CQP, CBR, VBR etc. It is unclear which of the surrounding configuration parameters in the documentation apply to which rate control method. For example:

  • Is the TARGET_BITRATE option used for CQP?
  • Is the MIN_QP option used for CQP (there is already QP_P and QP_B).

It should be clarified which options exactly affect which rate control methods.

e00E avatar Dec 06 '21 03:12 e00E

This is common rate control question not specific to AMF. CQP by definition maintains constant quality and therefore doesn't care about bitrate parameters. MIN_QP/MAX_QP defines range of QPs when it can be changed - for variable bitrate modes. QP_P sets fixed QP - for CQP. Again, this is not AMF unique feature.

MikhailAMD avatar Dec 06 '21 14:12 MikhailAMD

I understand that this is common between other encoders but I think there would still be value for this to be completely clear in the documentation. When I compare AMF rate control options with x264 for example it is not obvious to me which settings are equivalent.

e00E avatar Dec 06 '21 15:12 e00E