We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question 1: How to set qp_i for h264?
I set QP_I to 22, but the QP value of output frame not equal to 22: here is my code:
set_avc_property(amf_encoder_, QP_I, 22); amf_encoder_->Init(); // rc = AMF_VIDEO_ENCODER_RATE_CONTROL_METHOD_CBR;
and i get qp value:
uint64_t average_qp = 0; pkt->GetProperty(AMF_VIDEO_ENCODER_STATISTIC_AVERAGE_QP, &average_qp);
Windows 11 && AMD Radeon RX 6950 XT.
Question 2: There are min_qp_i and max_qp_i in hevc, but not h264
The text was updated successfully, but these errors were encountered:
rc = AMF_VIDEO_ENCODER_RATE_CONTROL_METHOD_CBR
Have you tried using AMF_VIDEO_ENCODER_RATE_CONTROL_METHOD_CONSTANT_QP
AMF_VIDEO_ENCODER_RATE_CONTROL_METHOD_CONSTANT_QP
Sorry, something went wrong.
Yes, fixed QP is for CQP rate control method. h264 only have AMF_VIDEO_ENCODER_MIN_QP and AMF_VIDEO_ENCODER_MAX_QP, no separation by frame type.
Thanks for replay.
No branches or pull requests
Question 1: How to set qp_i for h264?
I set QP_I to 22, but the QP value of output frame not equal to 22:

here is my code:
and i get qp value:
Windows 11 && AMD Radeon RX 6950 XT.
Question 2: There are min_qp_i and max_qp_i in hevc, but not h264
The text was updated successfully, but these errors were encountered: