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/post/audio/upmix.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/post/audio/upmix.c')
-rw-r--r-- | src/post/audio/upmix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/audio/upmix.c b/src/post/audio/upmix.c index 129e63f9e..091a39b0c 100644 --- a/src/post/audio/upmix.c +++ b/src/post/audio/upmix.c @@ -23,7 +23,7 @@ * It simply creates output channels to match the speaker arrangement. * E.g. Converts Stereo into Surround 5.1 * - * $Id: upmix.c,v 1.12 2004/05/18 03:17:02 miguelfreitas Exp $ + * $Id: upmix.c,v 1.13 2004/05/23 16:20:56 mroi Exp $ * */ @@ -190,7 +190,7 @@ static int upmix_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream, this->ratio = (double)FOO_WIDTH/(double)FOO_HEIGHT; this->channels = _x_ao_mode2channels(mode); /* FIXME: Handle all desired output formats */ - if ((capabilities & AO_CAP_MODE_5_1CHANNEL) && (capabilities & AO_CAP_32BITS)) { + if ((capabilities & AO_CAP_MODE_5_1CHANNEL) && (capabilities & AO_CAP_FLOAT32)) { this->channels_out=6; mode = AO_CAP_MODE_5_1CHANNEL; bits = 32; /* Upmix to Floats */ |