diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-03-20 01:32:29 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-03-20 01:32:29 +0000 |
commit | 76034913d2644df2fd6206415fe23f6972e7eed1 (patch) | |
tree | 33af627ae38d186b21c77f878d039beceaa6164f | |
parent | 4e5cf748f3e8d1f1dc57c82d1ca7825348f4eb3e (diff) | |
download | xine-lib-76034913d2644df2fd6206415fe23f6972e7eed1.tar.gz xine-lib-76034913d2644df2fd6206415fe23f6972e7eed1.tar.bz2 |
Correct device names.
CVS patchset: 6290
CVS date: 2004/03/20 01:32:29
-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 0187a40de..4f96d5e12 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.131 2004/03/19 13:17:47 f1rmb Exp $ + * $Id: audio_alsa_out.c,v 1.132 2004/03/20 01:32:29 jcdutton Exp $ */ #ifdef HAVE_CONFIG_H @@ -361,7 +361,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", - "front", + "plug:front", _("device used for stereo output"), NULL, 10, NULL, @@ -371,7 +371,7 @@ static int ao_alsa_open(ao_driver_t *this_gen, uint32_t bits, uint32_t rate, int this->num_channels = 4; pcm_device = config->register_string(config, "audio.alsa_surround40_device", - "surround40", + "plug:surround40", _("device used for 4-channel output"), NULL, 10, NULL, @@ -383,7 +383,7 @@ static int ao_alsa_open(ao_driver_t *this_gen, uint32_t bits, uint32_t rate, int this->num_channels = 6; pcm_device = config->register_string(config, "audio.alsa_surround51_device", - "surround51", + "plug:surround51", _("device used for 5+ channel output"), NULL, 10, NULL, |