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
1 changed files with 1 additions and 1 deletions

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