Skip to content

Commit

Permalink
obs-nvenc: Fix translation string for 4:4:4 unsupported error
Browse files Browse the repository at this point in the history
  • Loading branch information
derrod authored and RytoEX committed Jan 16, 2025
1 parent a8de12c commit 7a04980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/obs-nvenc/nvenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ static bool init_encoder(struct nvenc_data *enc, enum codec_type codec, obs_data
enc->in_format = get_preferred_format(pref_format);

if (enc->in_format == VIDEO_FORMAT_I444 && !support_444) {
NV_FAIL(obs_module_text("NVENC.444Unsupported"));
NV_FAIL(obs_module_text("444Unsupported"));
return false;
}

Expand Down

0 comments on commit 7a04980

Please sign in to comment.