summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-20 17:12:08 +0100
committerwm4 <wm4@nowhere>2016-01-20 17:12:08 +0100
commit930b0d1cf6f2ffa6bf3df516e120a395e1c60342 (patch)
treed31ef5f743b1c18324640bc3f237347473ca64cd /options
parentff43215960b33e9137fd619bc13b2e103cf5eda8 (diff)
downloadmpv-930b0d1cf6f2ffa6bf3df516e120a395e1c60342.tar.bz2
mpv-930b0d1cf6f2ffa6bf3df516e120a395e1c60342.tar.xz
audio: change --audio-channels default back to stereo
Too many problems. Well, actually it's just Linux audio systems which cause problems, and exclusive audio access on other platforms. In any case, it seems you have to do some manual configuration if you want multichannel audio output.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 791f5beeb5..7d376d8f22 100644
--- a/options/options.c
+++ b/options/options.c
@@ -787,7 +787,7 @@ const struct MPOpts mp_default_opts = {
.sub_visibility = 1,
.sub_pos = 100,
.sub_speed = 1.0,
- .audio_output_channels = {0}, // auto
+ .audio_output_channels = MP_CHMAP_INIT_STEREO,
.audio_output_format = 0, // AF_FORMAT_UNKNOWN
.playback_speed = 1.,
.pitch_correction = 1,