diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-14 01:38:17 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-14 01:38:17 +0000 |
commit | 9a1b7e9c865032c9d4bff03a88c81927be8f777e (patch) | |
tree | bdb969c292a0dcc377f674037b61abcf0617608f /src/audio_out/audio_alsa_out.c | |
parent | 6bc78a78b69bd6dede7b4b1913f47959b1875228 (diff) | |
download | xine-lib-9a1b7e9c865032c9d4bff03a88c81927be8f777e.tar.gz xine-lib-9a1b7e9c865032c9d4bff03a88c81927be8f777e.tar.bz2 |
audio output plugin priority handling, based on patch provided by Philip Stadermann
CVS patchset: 423
CVS date: 2001/08/14 01:38:17
Diffstat (limited to 'src/audio_out/audio_alsa_out.c')
-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 e76a0f730..5962bbb8b 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -24,7 +24,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.13 2001/08/01 18:17:40 joachim_koenig Exp $ + * $Id: audio_alsa_out.c,v 1.14 2001/08/14 01:38:17 guenter Exp $ */ #ifdef HAVE_CONFIG_H @@ -684,7 +684,7 @@ ao_functions_t *init_audio_out_plugin (config_values_t *config) { return &this->ao_functions; } -static ao_info_t ao_info_alsa = { +static ao_info_t ao_info_alsa9 = { AUDIO_OUT_IFACE_VERSION, "alsa09", "xine audio output plugin using alsa-compliant audio devices/drivers", @@ -692,5 +692,5 @@ static ao_info_t ao_info_alsa = { }; ao_info_t *get_audio_out_plugin_info() { - return &ao_info_alsa; + return &ao_info_alsa9; } |