aboutsummaryrefslogtreecommitdiff
path: root/src/Overlay.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-30 17:16:21 +0200
committerdec05eba <dec05eba@protonmail.com>2025-03-30 17:16:21 +0200
commit3060e3ee000ddb12a78d8008f641b724ce7b07df (patch)
treed1b765a00fcd0f338d4b96c1a519063e336c9bf0 /src/Overlay.cpp
parent2b63fa048c0f7ca32dc3e96df18fd8d76df19c8c (diff)
Add high performance encoding option (for amd) in settings page. Requires gsr version >= 5.3.4
Diffstat (limited to 'src/Overlay.cpp')
-rw-r--r--src/Overlay.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Overlay.cpp b/src/Overlay.cpp
index 4eb8844..6e5f8e4 100644
--- a/src/Overlay.cpp
+++ b/src/Overlay.cpp
@@ -1841,7 +1841,7 @@ namespace gsr {
args.push_back(region_str);
}
- static void add_common_gpu_screen_recorder_args(std::vector<const char*> &args, const RecordOptions &record_options, const std::vector<std::string> &audio_tracks, const std::string &video_bitrate, const char *region, const std::string &audio_devices_merged, char *region_str, int region_str_size, const RegionSelector &region_selector) {
+ void Overlay::add_common_gpu_screen_recorder_args(std::vector<const char*> &args, const RecordOptions &record_options, const std::vector<std::string> &audio_tracks, const std::string &video_bitrate, const char *region, const std::string &audio_devices_merged, char *region_str, int region_str_size, const RegionSelector &region_selector) {
if(record_options.video_quality == "custom") {
args.push_back("-bm");
args.push_back("cbr");
@@ -1876,6 +1876,11 @@ namespace gsr {
if(record_options.record_area_option == "region")
add_region_command(args, region_str, region_str_size, region_selector);
+
+ if(config.main_config.high_performance_encoding && gsr_info.gpu_info.vendor != GpuVendor::NVIDIA && gsr_info.system_info.gsr_version >= GsrVersion{5, 3, 4}) {
+ args.push_back("-high-performance-encoding");
+ args.push_back("yes");
+ }
}
static bool validate_capture_target(const GsrInfo &gsr_info, const std::string &capture_target) {