mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-27 14:43:21 -05:00
[config] Change speaker_autoselect default to no
The changes in commit 6612899 mean that we now do more to maintain selection of a user selected speaker, even if it fails or is powered off for a while. Thus this option is no longer relevant. The option was also never very good for people with many speakers.
This commit is contained in:
parent
b6dfb48100
commit
778d6f4999
@ -47,7 +47,7 @@ general {
|
|||||||
|
|
||||||
# When starting playback, autoselect speaker (if none of the previously
|
# When starting playback, autoselect speaker (if none of the previously
|
||||||
# selected speakers/outputs are available)
|
# selected speakers/outputs are available)
|
||||||
# speaker_autoselect = yes
|
# speaker_autoselect = no
|
||||||
|
|
||||||
# Most modern systems have a high-resolution clock, but if you are on an
|
# Most modern systems have a high-resolution clock, but if you are on an
|
||||||
# unusual platform and experience audio drop-outs, you can try changing
|
# unusual platform and experience audio drop-outs, you can try changing
|
||||||
|
@ -54,7 +54,7 @@ static cfg_opt_t sec_general[] =
|
|||||||
CFG_BOOL("ipv6", cfg_true, CFGF_NONE),
|
CFG_BOOL("ipv6", cfg_true, CFGF_NONE),
|
||||||
CFG_STR("cache_path", STATEDIR "/cache/" PACKAGE "/cache.db", CFGF_NONE),
|
CFG_STR("cache_path", STATEDIR "/cache/" PACKAGE "/cache.db", CFGF_NONE),
|
||||||
CFG_INT("cache_daap_threshold", 1000, CFGF_NONE),
|
CFG_INT("cache_daap_threshold", 1000, CFGF_NONE),
|
||||||
CFG_BOOL("speaker_autoselect", cfg_true, CFGF_NONE),
|
CFG_BOOL("speaker_autoselect", cfg_false, CFGF_NONE),
|
||||||
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||||
CFG_BOOL("high_resolution_clock", cfg_false, CFGF_NONE),
|
CFG_BOOL("high_resolution_clock", cfg_false, CFGF_NONE),
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user