I have two mono audio channels (pcm format) of audio call, incoming and outgoing. how to mix them? how to position them in space? (e.g. incoming channel sounds slightly on the left and outgoing on the right)

link|improve this question

1  
Good spacial stereo requires a delay on one of the channels. At most the space between your ears divided by the speed of sound. – Hans Passant Dec 31 '10 at 0:48
feedback

2 Answers

up vote 1 down vote accepted

Mixing is just a weighted addition of both signals. So if you want them to be equal in one mono signal, lower both signals by a factor of 2 and add them. If you want to position them in the stereo space, use different weighting on the left and right channel. For example 0.6 of signal 1 and 0.4 of signal 2 on the left channel and vice versa on the right channel will do the trick. For better results, a slight timeshift would be necessary, but that depends on your needs.

link|improve this answer
yeah, I did that (0.5 + 0.5) and received lower volume, why? so I had to just add them (1 + 1) and check for overflow - if the sum is not >32768. in this case I received good volume, but I don't understand why 32768 and not just 65536, and if 32768 is right value. – Andy T Dec 30 '10 at 23:56
1  
@gro: Why the division? Two violins playing the same thing should actually be louder than one violin, right? – FredOverflow Dec 30 '10 at 23:57
1  
Nah, the 2nd violinist knocked you off the podium. – Hans Passant Dec 31 '10 at 0:10
+32767 is the largest signed 16-bit value that can be used. 65535 would be for unsigned values. – Michael Dorgan Dec 31 '10 at 1:25
1  
Addition of sound samples is not a good practice in sound mixing. One should fourier-transform both channels, sum two spectra, then transform the result back to time domain. – mbaitoff Dec 31 '10 at 6:41
show 8 more comments
feedback

Stereo PCM is just left and right interleaved, first all the bytes for one sample of the left channel then all the bytes for one sample on the right channel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.