diff options
author | wm4 <wm4@nowhere> | 2015-11-29 13:04:01 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-11-29 17:55:01 +0100 |
commit | 6ff1cd5502e4f88783c4bb615164b875511d9b71 (patch) | |
tree | 2d1295c573f13368cc443e075cf9ba1d32186f22 /video | |
parent | 9fc74d5acd6fcc9b521a78ecfa9dc0ec3487fc8b (diff) |
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.c | 6 |
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}, |