1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-11 09:29:29 +00:00

vo_opengl: make spline36 default with --vo=opengl-hq

This commit is contained in:
wm4 2014-04-17 21:53:42 +02:00
parent 9dba2a52db
commit 491f5bc9ac
2 changed files with 5 additions and 3 deletions

View File

@ -260,11 +260,13 @@ Available video output drivers are:
``lanczos2``
Lanczos scaling with radius=2. Provides good quality and speed.
This is the default when using ``opengl-hq``.
``lanczos3``
Lanczos with radius=3.
``spline36``
This is the default when using ``opengl-hq``.
``bicubic_fast``
Bicubic filter. Has a blurring effect on the image, even if no
scaling is done.
@ -516,7 +518,7 @@ Available video output drivers are:
This is equivalent to::
--vo=opengl:lscale=lanczos2:dither-depth=auto:fbo-format=rgb16
--vo=opengl:lscale=spline36:dither-depth=auto:fbo-format=rgb16
Note that some cheaper LCDs do dithering that gravely interferes with
``opengl``'s dithering. Disabling dithering with ``dither-depth=no`` helps.

View File

@ -292,7 +292,7 @@ const struct gl_video_opts gl_video_opts_hq_def = {
.dither_size = 6,
.fbo_format = GL_RGBA16,
.scale_sep = 1,
.scalers = { "lanczos2", "bilinear" },
.scalers = { "spline36", "bilinear" },
.scaler_params = {NAN, NAN},
.alpha_mode = 2,
};