diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-03-04 11:19:31 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-03-04 11:19:31 +0100 |
commit | 74a5fb9dfbfab90f6e711c1763958cdcf380e77b (patch) | |
tree | ee0aa9fa721a486a53d8ae8ef9d1b4f41f210a9c /src/capture/nvfbc.c | |
parent | 03e583e61e4cc28fa614dcd981d093ede0b3dd62 (diff) |
Add screen-direct-force option for VRR monitor
Diffstat (limited to 'src/capture/nvfbc.c')
-rw-r--r-- | src/capture/nvfbc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/capture/nvfbc.c b/src/capture/nvfbc.c index 9587972..fba3321 100644 --- a/src/capture/nvfbc.c +++ b/src/capture/nvfbc.c @@ -205,6 +205,7 @@ static int gsr_capture_nvfbc_start(gsr_capture *cap, AVCodecContext *video_codec if(direct_capture && get_driver_version(&driver_major_version, &driver_minor_version)) { fprintf(stderr, "Info: detected nvidia version: %d.%d\n", driver_major_version, driver_minor_version); + // TODO: if(version_at_least(driver_major_version, driver_minor_version, 515, 57) && version_less_than(driver_major_version, driver_minor_version, 520, 56)) { direct_capture = false; fprintf(stderr, "Warning: \"screen-direct\" has temporary been disabled as it causes stuttering with driver versions >= 515.57 and < 520.56. Please update your driver if possible. Capturing \"screen\" instead.\n"); @@ -292,8 +293,8 @@ static int gsr_capture_nvfbc_start(gsr_capture *cap, AVCodecContext *video_codec create_capture_params.captureBox = (NVFBC_BOX){ x, y, width, height }; create_capture_params.eTrackingType = tracking_type; create_capture_params.dwSamplingRateMs = 1000u / ((uint32_t)cap_nvfbc->params.fps + 1); - create_capture_params.bAllowDirectCapture = cap_nvfbc->params.direct_capture ? NVFBC_TRUE : NVFBC_FALSE; - create_capture_params.bPushModel = cap_nvfbc->params.direct_capture ? NVFBC_TRUE : NVFBC_FALSE; + create_capture_params.bAllowDirectCapture = direct_capture ? NVFBC_TRUE : NVFBC_FALSE; + create_capture_params.bPushModel = direct_capture ? NVFBC_TRUE : NVFBC_FALSE; if(tracking_type == NVFBC_TRACKING_OUTPUT) create_capture_params.dwOutputId = output_id; |