1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-19 22:01:10 +00:00

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.
This commit is contained in:
Niklas Haas 2016-03-07 20:30:49 +01:00 committed by wm4
parent c68721b832
commit 2db1b9e474

View File

@ -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