mirror of
https://github.com/mpv-player/mpv
synced 2025-03-25 04:38:01 +00:00
zimg: make --zimg-fast=yes default
This is mostly just because of the odd RGB default gamma issue, which shouldn't have any real impact. This also sets allow_approximate_gamma, which I hope is fine for normal use cases.
This commit is contained in:
parent
c9d685f5d6
commit
00838fe0c3
@ -3889,7 +3889,7 @@ Software Scaler
|
||||
|
||||
``--zimg-fast=<yes|no>``
|
||||
Allow optimizations that help with performance, but reduce quality (default:
|
||||
no). Currently, this may simplify gamma conversion operations.
|
||||
yes). Currently, this may simplify gamma conversion operations.
|
||||
|
||||
|
||||
Audio Resampler
|
||||
|
@ -69,7 +69,6 @@ sws-fast=yes
|
||||
sws-allow-zimg=yes
|
||||
zimg-scaler=bilinear
|
||||
zimg-dither=no
|
||||
zimg-fast=yes
|
||||
|
||||
# Compatibility alias (deprecated)
|
||||
[opengl-hq]
|
||||
|
@ -64,6 +64,7 @@ const struct m_sub_options zimg_conf = {
|
||||
.scaler_chroma_params = {NAN, NAN},
|
||||
.scaler_chroma = ZIMG_RESIZE_BILINEAR,
|
||||
.dither = ZIMG_DITHER_RANDOM,
|
||||
.fast = 1,
|
||||
},
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user