summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-11-29 13:04:01 +0100
committerwm4 <wm4@nowhere>2015-11-29 17:55:01 +0100
commit6ff1cd5502e4f88783c4bb615164b875511d9b71 (patch)
tree2d1295c573f13368cc443e075cf9ba1d32186f22 /video
parent9fc74d5acd6fcc9b521a78ecfa9dc0ec3487fc8b (diff)
downloadmpv-6ff1cd5502e4f88783c4bb615164b875511d9b71.tar.bz2
mpv-6ff1cd5502e4f88783c4bb615164b875511d9b71.tar.xz
vo_opengl: make tscale=mitchell:tscale-clamp the default
Looks better than "oversample". tscale-clamp suggested by haasn.
Diffstat (limited to 'video')
-rw-r--r--video/out/opengl/video.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c
index 70e98aeea1..287c240691 100644
--- a/video/out/opengl/video.c
+++ b/video/out/opengl/video.c
@@ -345,7 +345,8 @@ const struct gl_video_opts gl_video_opts_def = {
{{"bilinear", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // scale
{{NULL, .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // dscale
{{"bilinear", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // cscale
- {{"oversample", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // tscale
+ {{"mitchell", .params={NAN, NAN}}, {.params = {NAN, NAN}},
+ .clamp = 1, }, // tscale
},
.alpha_mode = 2,
.background = {0, 0, 0, 255},
@@ -367,7 +368,8 @@ const struct gl_video_opts gl_video_opts_hq_def = {
{{"spline36", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // scale
{{"mitchell", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // dscale
{{"spline36", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // cscale
- {{"oversample", .params={NAN, NAN}}, {.params = {NAN, NAN}}}, // tscale
+ {{"mitchell", .params={NAN, NAN}}, {.params = {NAN, NAN}},
+ .clamp = 1, }, // tscale
},
.alpha_mode = 2,
.background = {0, 0, 0, 255},