mirror of https://github.com/mpv-player/mpv
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:
parent
c68721b832
commit
2db1b9e474
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue