mirror of https://github.com/mpv-player/mpv
options: disable --allow-delayed-peak-detect by default
Peak detection greatly increases HDR experience. Performance hit of non-delayed detection is not that significant and is in line with current default settings.
This commit is contained in:
parent
06c26e37ed
commit
869faadc68
|
@ -100,6 +100,7 @@ Interface changes
|
||||||
- add `playlist-next-playlist` and `playlist-prev-playlist` commands
|
- add `playlist-next-playlist` and `playlist-prev-playlist` commands
|
||||||
- change `video-codec` to show description or name, not both
|
- change `video-codec` to show description or name, not both
|
||||||
- deprecate `--cdda-toc-bias` option, offsets are always checked now
|
- deprecate `--cdda-toc-bias` option, offsets are always checked now
|
||||||
|
- disable `--allow-delayed-peak-detect` by default
|
||||||
--- mpv 0.36.0 ---
|
--- mpv 0.36.0 ---
|
||||||
- add `--target-contrast`
|
- add `--target-contrast`
|
||||||
- Target luminance value is now also applied when ICC profile is used.
|
- Target luminance value is now also applied when ICC profile is used.
|
||||||
|
|
|
@ -6698,7 +6698,7 @@ them.
|
||||||
frame when beneficial for performance. In particular, this is required to
|
frame when beneficial for performance. In particular, this is required to
|
||||||
avoid an unnecessary FBO indirection when no advanced rendering is required
|
avoid an unnecessary FBO indirection when no advanced rendering is required
|
||||||
otherwise. Has no effect if there already is an indirect pass, such as when
|
otherwise. Has no effect if there already is an indirect pass, such as when
|
||||||
advanced scaling is enabled. Defaults to on. (Only affects
|
advanced scaling is enabled. Defaults to no. (Only affects
|
||||||
``--vo=gpu-next``, note that ``--vo=gpu`` always delays the peak.)
|
``--vo=gpu-next``, note that ``--vo=gpu`` always delays the peak.)
|
||||||
|
|
||||||
``--hdr-peak-percentile=<0.0..100.0>``
|
``--hdr-peak-percentile=<0.0..100.0>``
|
||||||
|
|
|
@ -48,12 +48,12 @@ correct-downscaling=no
|
||||||
linear-downscaling=no
|
linear-downscaling=no
|
||||||
sigmoid-upscaling=no
|
sigmoid-upscaling=no
|
||||||
hdr-compute-peak=no
|
hdr-compute-peak=no
|
||||||
|
allow-delayed-peak-detect=yes
|
||||||
|
|
||||||
[high-quality]
|
[high-quality]
|
||||||
scale=ewa_lanczossharp
|
scale=ewa_lanczossharp
|
||||||
hdr-peak-percentile=99.995
|
hdr-peak-percentile=99.995
|
||||||
hdr-contrast-recovery=0.30
|
hdr-contrast-recovery=0.30
|
||||||
allow-delayed-peak-detect=no
|
|
||||||
deband=yes
|
deband=yes
|
||||||
|
|
||||||
# Deprecated alias
|
# Deprecated alias
|
||||||
|
|
|
@ -2217,7 +2217,6 @@ const struct vo_driver video_out_gpu_next = {
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.priv_size = sizeof(struct priv),
|
.priv_size = sizeof(struct priv),
|
||||||
.priv_defaults = &(const struct priv) {
|
.priv_defaults = &(const struct priv) {
|
||||||
.delayed_peak = true,
|
|
||||||
.inter_preserve = true,
|
.inter_preserve = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue