Merge pull request #1654 from VodBox/nvenc-cqp

obs-ffmpeg: Use CQP in jim-nvenc properties text
This commit is contained in:
Jim 2019-02-09 16:38:19 -08:00 committed by GitHub
commit 6d84bc4b03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -446,7 +446,7 @@ obs_properties_t *nvenc_properties(void *unused)
obs_module_text("RateControl"),
OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
obs_property_list_add_string(p, "CBR", "CBR");
obs_property_list_add_string(p, "CQ", "CQP");
obs_property_list_add_string(p, "CQP", "CQP");
obs_property_list_add_string(p, "VBR", "VBR");
obs_property_list_add_string(p, obs_module_text("Lossless"),
"lossless");