1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-16 20:27:23 +00:00

ao_audiotrack: enable pcm-float by default

Since recent commits this should work 100% as well as s16.
This commit is contained in:
sfan5 2023-08-06 18:47:12 +02:00
parent 862011942f
commit bc52159cb9
2 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,7 @@ Interface changes
- change `--subs-fallback` default from `no` to `default`
- add the `--hdr-peak-percentile` option
- include `--hdr-peak-percentile` in the `gpu-hq` profile
- change `--audiotrack-pcm-float` default from `no` to `yes`
--- mpv 0.36.0 ---
- add `--target-contrast`
- Target luminance value is now also applied when ICC profile is used.

View File

@ -841,6 +841,9 @@ const struct ao_driver audio_out_audiotrack = {
.reset = stop,
.start = start,
.priv_size = sizeof(struct priv),
.priv_defaults = &(const OPT_BASE_STRUCT) {
.cfg_pcm_float = 1,
},
.options = (const struct m_option[]) {
{"pcm-float", OPT_BOOL(cfg_pcm_float)},
{"session-id", OPT_INT(cfg_session_id)},