From 12ffce0f224056f91a20c9f0b197f4973931efbe Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Fri, 5 Feb 2021 15:12:43 +0100 Subject: vo_gpu: lower default deband threshold The previous default was found to be too aggressive for most video. Change to a lower value to prevent destroying too much detail. --- video/out/gpu/video_shaders.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/gpu/video_shaders.c b/video/out/gpu/video_shaders.c index 7073185eaf..91c9aac865 100644 --- a/video/out/gpu/video_shaders.c +++ b/video/out/gpu/video_shaders.c @@ -946,7 +946,7 @@ struct deband_opts { const struct deband_opts deband_opts_def = { .iterations = 1, - .threshold = 64.0, + .threshold = 32.0, .range = 16.0, .grain = 48.0, }; -- cgit v1.2.3