From 2db1b9e474889e5a49ab17e9f6ab58caf2f81d8b Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Mon, 7 Mar 2016 20:30:49 +0100 Subject: [PATCH] vo_opengl: decrease default superxbr-edge-strength The default of 1.0 was basically making half the algorithm do nothing, since it turned off all diagonal contributions. The upstream default is 0.6, and this produces a more reasonable image. --- video/out/opengl/superxbr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/opengl/superxbr.c b/video/out/opengl/superxbr.c index e80b1b0a7c..323ed18513 100644 --- a/video/out/opengl/superxbr.c +++ b/video/out/opengl/superxbr.c @@ -31,7 +31,7 @@ struct superxbr_opts { const struct superxbr_opts superxbr_opts_def = { .sharpness = 1.0f, - .edge_strength = 1.0f, + .edge_strength = 0.6f, }; #define OPT_BASE_STRUCT struct superxbr_opts