Skip to content

Commit

Permalink
obs-ffmpeg: Fix NVENC "mq" to use P6 rather than P4
Browse files Browse the repository at this point in the history
  • Loading branch information
jp9000 committed Oct 20, 2022
1 parent ead7ae2 commit f8299e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/obs-ffmpeg/jim-nvenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f8299e3

Please sign in to comment.