mirror of https://github.com/mpv-player/mpv
vo_gpu_next: set --target-colorspace-hint to `yes` by default
It simply does not make any sense to not signal the correct colorspace and metadata by default.
This commit is contained in:
parent
d5f1cd07dc
commit
23843b4aa5
|
@ -0,0 +1 @@
|
|||
change `target-colorspace-hint` default to `yes`
|
|
@ -6830,6 +6830,7 @@ them.
|
|||
Automatically configure the output colorspace of the display to pass
|
||||
through the input values of the stream (e.g. for HDR passthrough), if
|
||||
possible. Requires a supporting driver and ``--vo=gpu-next``.
|
||||
(Default: ``yes``)
|
||||
|
||||
``--target-prim=<value>``
|
||||
Specifies the primaries of the display. Video colors will be adapted to
|
||||
|
|
|
@ -206,6 +206,7 @@ const struct m_sub_options gl_next_conf = {
|
|||
.defaults = &(struct gl_next_opts) {
|
||||
.border_background = BACKGROUND_COLOR,
|
||||
.inter_preserve = true,
|
||||
.target_hint = true,
|
||||
},
|
||||
.size = sizeof(struct gl_next_opts),
|
||||
.change_flags = UPDATE_VIDEO,
|
||||
|
|
Loading…
Reference in New Issue