summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@users.sourceforge.net>2004-07-15 18:16:09 +0000
committerBastien Nocera <hadess@users.sourceforge.net>2004-07-15 18:16:09 +0000
commit7c75bc84c1addfd3247c8120eb4bdf21a0189daf (patch)
tree4255558f7c72a424638c4d4c8e7ff235c75261aa
parent227de1322ace97f1fb3c386406a4bed7f95dd5d0 (diff)
downloadxine-lib-7c75bc84c1addfd3247c8120eb4bdf21a0189daf.tar.gz
xine-lib-7c75bc84c1addfd3247c8120eb4bdf21a0189daf.tar.bz2
- remove the "default" keyword for default sound devices, as this keyword
can break surround systems. It still allows for the default soundcard to be selected via /etc/asound.conf CVS patchset: 6797 CVS date: 2004/07/15 18:16:09
-rw-r--r--src/audio_out/audio_alsa_out.c8
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 648873001..270e7ebbf 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.145 2004/07/14 23:29:09 hadess Exp $
+ * $Id: audio_alsa_out.c,v 1.146 2004/07/15 18:16:09 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:default",
+ "plug:front:",
_("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:default",
+ "plug:surround40:",
_("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:default",
+ "plug:surround51:",
_("device used for 5.1-channel output"),
_("xine will use this alsa device to output "
"5 channel plus LFE (5.1) surround sound.\n"