obs-ffmpeg: Align NVENC aqStrength

If Psycho Visual Tuning is on, switch aqStrength to from 0 to 8 to match
FFmpeg default.
This commit is contained in:
jpark37 2021-03-16 19:02:50 -07:00
parent 0c971276ae
commit f253c6dcb3

View File

@ -472,6 +472,7 @@ static bool init_encoder(struct nvenc_data *enc, obs_data_t *settings)
/* psycho aq */
if (nv_get_cap(enc, NV_ENC_CAPS_SUPPORT_TEMPORAL_AQ)) {
config->rcParams.enableAQ = psycho_aq;
config->rcParams.aqStrength = 8;
config->rcParams.enableTemporalAQ = psycho_aq;
}