[pulseaudio-commits] Branch 'next' - src/pulsecore
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Tue Apr 9 04:56:12 PDT 2013
src/pulsecore/mix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit bfb281c7d53e00d433d0098f101ec8c354d03475
Author: Tanu Kaskinen <tanuk at iki.fi>
Date: Tue Apr 9 14:52:54 2013 +0300
mix: Mix the right number of streams
Passing channels instead of nstreams to pa_mix_ch2_s16ne() caused that
only the first two streams got mixed.
BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=63093
diff --git a/src/pulsecore/mix.c b/src/pulsecore/mix.c
index 786ed75..6ff6831 100644
--- a/src/pulsecore/mix.c
+++ b/src/pulsecore/mix.c
@@ -249,7 +249,7 @@ static void pa_mix_s16ne_c(pa_mix_info streams[], unsigned nstreams, unsigned ch
else if (nstreams == 2)
pa_mix2_s16ne(streams, channels, data, length);
else if (channels == 2)
- pa_mix_ch2_s16ne(streams, channels, data, length);
+ pa_mix_ch2_s16ne(streams, nstreams, data, length);
else
pa_mix_generic_s16ne(streams, nstreams, channels, data, length);
}
More information about the pulseaudio-commits
mailing list