From bcd8117c76b944e2dcd1cbeb0d213e5194742096 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 28 Oct 2022 10:32:57 +0200 Subject: Better audio/video sync, disable broken screen-direct again (nvidia driver bug) --- src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index ae896d3..bde09b2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -980,8 +980,12 @@ int main(int argc, char **argv) { const char *capture_target = window_str; bool direct_capture = strcmp(window_str, "screen-direct") == 0; - if(direct_capture) + if(direct_capture) { capture_target = "screen"; + // TODO: Temporary disable direct capture because push model causes stuttering when it's direct capturing. This might be a nvfbc bug. This does not happen when using a compositor. + direct_capture = false; + fprintf(stderr, "Warning: screen-direct has temporary been disabled as it causes stuttering. This is likely a NvFBC bug. Falling back to \"screen\".\n"); + } gsr_capture_nvfbc_params nvfbc_params; nvfbc_params.dpy = dpy; -- cgit v1.2.3