diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-09-02 01:28:23 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-09-02 01:28:23 +0000 |
commit | 30e70286eb652cd3e294cd7df53496bd6c3dc624 (patch) | |
tree | 3716fb1cdf80fbd2aeb693669881a01a44b3a537 | |
parent | aea9b83c8f72b811ffc1200e1e92288b7d15db38 (diff) | |
download | xine-lib-30e70286eb652cd3e294cd7df53496bd6c3dc624.tar.gz xine-lib-30e70286eb652cd3e294cd7df53496bd6c3dc624.tar.bz2 |
Fix the device used for stereo output to "front".
The old default of "default" seems to act strangely.
People were getting errors like: -
audio_alsa_out: buffer time not available
CVS patchset: 5330
CVS date: 2003/09/02 01:28:23
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index c88e1291c..ccf7a553e 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.106 2003/09/01 04:08:41 jcdutton Exp $ + * $Id: audio_alsa_out.c,v 1.107 2003/09/02 01:28:23 jcdutton Exp $ */ #ifdef HAVE_CONFIG_H @@ -305,7 +305,7 @@ static int ao_alsa_open(ao_driver_t *this_gen, uint32_t bits, uint32_t rate, int this->num_channels = 2; pcm_device = config->register_string(config, "audio.alsa_front_device", - "default", + "front", _("device used for stereo output"), NULL, 10, NULL, @@ -1184,7 +1184,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", - "default", + "front", _("device used for stereo output"), NULL, 10, NULL, |