0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-19 20:32:15 +02:00

obs-ffmpeg: Fix NVENC "mq" to use P6 rather than P4

This commit is contained in:
jp9000 2022-10-19 17:52:30 -07:00
parent 70c5f6c24a
commit 556ef40529

View File

@ -468,7 +468,7 @@ static bool init_encoder_base(struct nvenc_data *enc, obs_data_t *settings,
nv_multipass = NV_ENC_TWO_PASS_QUARTER_RESOLUTION;
} else if (astrcmpi(preset, "mq") == 0) {
nv_preset = NV_ENC_PRESET_P4_GUID;
nv_preset = NV_ENC_PRESET_P6_GUID;
nv_tuning = NV_ENC_TUNING_INFO_HIGH_QUALITY;
nv_multipass = NV_ENC_TWO_PASS_QUARTER_RESOLUTION;