nvenc: properly apply minqp to I-frames

This commit is contained in:
ns6089 2023-08-13 21:54:49 +03:00 committed by Cameron Gutman
parent 6c5fa8a08d
commit f2f63cdfff

View File

@ -249,7 +249,7 @@ namespace nvenc {
if (config.enable_min_qp) {
enc_config.rcParams.enableMinQP = 1;
enc_config.rcParams.minQP.qpInterP = value;
enc_config.rcParams.minQP.qpInterP = value;
enc_config.rcParams.minQP.qpIntra = value;
}
};