diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2004-12-22 17:51:38 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2004-12-22 17:51:38 +0000 |
commit | a9392af3735dda8783da7cdda808086fdfc46682 (patch) | |
tree | 00454b8c64126e9160aee2298aec60551d5a7d00 /src | |
parent | 260fd38a92180038934600da06baefa296b2b23a (diff) | |
download | xine-lib-a9392af3735dda8783da7cdda808086fdfc46682.tar.gz xine-lib-a9392af3735dda8783da7cdda808086fdfc46682.tar.bz2 |
rename clashing snd_mixer_wait
CVS patchset: 7293
CVS date: 2004/12/22 17:51:38
Diffstat (limited to 'src')
-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 02608287d..63f617bee 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.150 2004/12/20 21:22:18 mroi Exp $ + * $Id: audio_alsa_out.c,v 1.151 2004/12/22 17:51:38 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -133,7 +133,7 @@ static int ao_alsa_get_percent_from_volume(long val, long min, long max) { } /* Stolen from alsa-lib */ -static int snd_mixer_wait(snd_mixer_t *mixer, int timeout) { +static int my_snd_mixer_wait(snd_mixer_t *mixer, int timeout) { struct pollfd spfds[16]; struct pollfd *pfds = spfds; int err, count; @@ -170,7 +170,7 @@ static void *ao_alsa_handle_event_thread(void *data) { this->mixer.running = 1; do { - if(snd_mixer_wait(this->mixer.handle, 333) > 0) { + if(my_snd_mixer_wait(this->mixer.handle, 333) > 0) { int err, mute = 0, swl = 0, swr = 0; long right_vol, left_vol; int old_mute; |