From ff3028c6563be25bcdc830ff95dc18a0fadcad20 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Fri, 9 May 2025 21:58:41 +0800 Subject: [PATCH] GPU: don't hide unknown type of GPUs by default Fix #1742 --- src/modules/gpu/gpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/gpu/gpu.c b/src/modules/gpu/gpu.c index 6754deed5..f7f4c90bc 100644 --- a/src/modules/gpu/gpu.c +++ b/src/modules/gpu/gpu.c @@ -505,7 +505,7 @@ void ffInitGPUOptions(FFGPUOptions* options) #endif ; options->temp = false; - options->hideType = FF_GPU_TYPE_UNKNOWN; + options->hideType = FF_GPU_TYPE_NONE; options->tempConfig = (FFColorRangeConfig) { 60, 80 }; options->percent = (FFPercentageModuleConfig) { 50, 80, 0 }; }