diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2004-07-15 21:46:51 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2004-07-15 21:46:51 +0000 |
commit | 92272f2d1c88d4bbb8af122fe3a184ceeb442d1a (patch) | |
tree | b434aa1f5a9f5962d507b6653eb5688d9bb767b9 | |
parent | e1deaeb8840f085632fb1e4caad022e7f1ad47e8 (diff) | |
download | xine-lib-92272f2d1c88d4bbb8af122fe3a184ceeb442d1a.tar.gz xine-lib-92272f2d1c88d4bbb8af122fe3a184ceeb442d1a.tar.bz2 |
- I shouldn't blindly commit...
plug:front: doesn't work for stereo, but plug:front:default does
revert the changes for 4.0 and 5.1 surround as I don't know whether
they work correctly with ":default"
CVS patchset: 6799
CVS date: 2004/07/15 21:46:51
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index 270e7ebbf..79123ff3b 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.146 2004/07/15 18:16:09 hadess Exp $ + * $Id: audio_alsa_out.c,v 1.147 2004/07/15 21:46:51 hadess Exp $ */ #ifdef HAVE_CONFIG_H @@ -1355,7 +1355,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da NULL); pcm_device = config->register_string(config, "audio.alsa_front_device", - "plug:front:", + "plug:front:default", _("device used for stereo output"), _("xine will use this alsa device to output " "stereo sound.\nSee the alsa documentation " @@ -1364,7 +1364,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da NULL); pcm_device = config->register_string(config, "audio.alsa_surround40_device", - "plug:surround40:", + "plug:surround40:0", _("device used for 4-channel output"), _("xine will use this alsa device to output " "4 channel (4.0) surround sound.\nSee the " @@ -1374,7 +1374,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da NULL); pcm_device = config->register_string(config, "audio.alsa_surround51_device", - "plug:surround51:", + "plug:surround51:0", _("device used for 5.1-channel output"), _("xine will use this alsa device to output " "5 channel plus LFE (5.1) surround sound.\n" |