mirror of
https://github.com/mpv-player/mpv
synced 2025-01-11 17:39:38 +00:00
vo_opengl: make spline36 default with --vo=opengl-hq
This commit is contained in:
parent
9dba2a52db
commit
491f5bc9ac
@ -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.
|
||||
|
@ -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,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user