summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2016-03-07 20:30:49 +0100
committerwm4 <wm4@nowhere>2016-03-07 22:31:15 +0100
commit2db1b9e474889e5a49ab17e9f6ab58caf2f81d8b (patch)
treea2ea324b656e484d958214a62ad1d73ad823f628
parentc68721b832738d5ed2bcddfc33ba030fcb17e15e (diff)
downloadmpv-2db1b9e474889e5a49ab17e9f6ab58caf2f81d8b.tar.bz2
mpv-2db1b9e474889e5a49ab17e9f6ab58caf2f81d8b.tar.xz
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.
-rw-r--r--video/out/opengl/superxbr.c2
1 files changed, 1 insertions, 1 deletions
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