From 2efcc6a567903d2648af416fc5ed09009aca4788 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 9 Mar 2024 18:59:04 +0100 Subject: Allow overclocking on window capture nvidia --- TODO | 4 +--- src/capture/xcomposite_cuda.c | 3 +-- src/main.cpp | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/TODO b/TODO index 7668725..a35e632 100644 --- a/TODO +++ b/TODO @@ -120,6 +120,4 @@ Show error when using compressed kms plane which isn't supported. Also do that i Modify ffmpeg to accept opengl texture for nvenc encoding. Removes extra buffers and copies. -When vulkan encode is added, mention minimum nvidia driver required. (550.54.14?). - -Dont display cursor in window capture mode if another window than the capture window selected. \ No newline at end of file +When vulkan encode is added, mention minimum nvidia driver required. (550.54.14?). \ No newline at end of file diff --git a/src/capture/xcomposite_cuda.c b/src/capture/xcomposite_cuda.c index 8a8f600..27d3864 100644 --- a/src/capture/xcomposite_cuda.c +++ b/src/capture/xcomposite_cuda.c @@ -26,8 +26,7 @@ static int gsr_capture_xcomposite_cuda_start(gsr_capture *cap, AVCodecContext *v return res; } - // TODO: overclocking is not supported on wayland... - if(!gsr_cuda_load(&cap_xcomp->cuda, NULL, false)) { + if(!gsr_cuda_load(&cap_xcomp->cuda, cap_xcomp->xcomposite.params.egl->x11.dpy, cap_xcomp->overclock)) { fprintf(stderr, "gsr error: gsr_capture_kms_cuda_start: failed to load cuda\n"); gsr_capture_xcomposite_cuda_stop(cap, video_codec_context); return -1; diff --git a/src/main.cpp b/src/main.cpp index e65ec74..867e80a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -816,7 +816,7 @@ static void usage_full() { fprintf(stderr, " -c Container format for output file, for example mp4, or flv. Only required if no output file is specified or if recording in replay buffer mode.\n"); fprintf(stderr, " If an output file is specified and -c is not used then the container format is determined from the output filename extension.\n"); fprintf(stderr, " Only containers that support h264, hevc or av1 are supported, which means that only mp4, mkv, flv (and some others) are supported.\n"); - fprintf(stderr, " WebM is not supported yet.\n"); + fprintf(stderr, " WebM is not supported yet (most hardware doesn't support WebM video encoding).\n"); fprintf(stderr, "\n"); fprintf(stderr, " -s The size (area) to record at in the format WxH, for example 1920x1080. This option is only supported (and required) when -w is \"focused\".\n"); fprintf(stderr, "\n"); -- cgit v1.2.3