diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-05-23 16:20:56 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-05-23 16:20:56 +0000 |
commit | 0f850afbe4ddc8ce5d561abf676d3a1bd8afa7ae (patch) | |
tree | b828ee8bbc8aed412aa2d4f1c7ab2ef4354c5cf6 /src/audio_out/audio_alsa_out.c | |
parent | c95dba35158f52b70a719f99c7377a649eb3eff4 (diff) | |
download | xine-lib-0f850afbe4ddc8ce5d561abf676d3a1bd8afa7ae.tar.gz xine-lib-0f850afbe4ddc8ce5d561abf676d3a1bd8afa7ae.tar.bz2 |
rename from AO_CAP_32BITS to AO_CAP_FLOAT32
CVS patchset: 6581
CVS date: 2004/05/23 16:20:56
Diffstat (limited to 'src/audio_out/audio_alsa_out.c')
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index 2cd145f63..bea7b8d27 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.141 2004/05/15 23:44:25 jcdutton Exp $ + * $Id: audio_alsa_out.c,v 1.142 2004/05/23 16:20:57 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -1480,7 +1480,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da xprintf(class->xine, XINE_VERBOSITY_LOG, _("24bit ")); } if (!(snd_pcm_hw_params_test_format(this->audio_fd, params, SND_PCM_FORMAT_FLOAT))) { - this->capabilities |= AO_CAP_32BITS; + this->capabilities |= AO_CAP_FLOAT32; xprintf(class->xine, XINE_VERBOSITY_LOG, _("32bit ")); } if (!(snd_pcm_hw_params_test_channels(this->audio_fd, params, 1))) { |