First, I need to generate 2 sine wave tones on the fly which are of same frequency, but opposite phases and play those back separately into right and left channel in stereo mode on Android. The playback needs to be perfectly in sync so that the sines of left and right channel are "mirrored" (when left channel has, say sample value of 120 the right channel should have -120).
The thing is that I have not found any evidence how this kind of setup would work. Is there a possibility to feed 2 separate tones/samplebuffers to AudioTrack
to be played back in left and right channel separately and simultaneously? If not, any other solutions to achieve the end result are much appreciated.
I guess one option would be to use pre-generated stereo wave files and stream those with AudioTrack
, but this seems too inflexible for the solution in the works. At the same time, if AudioTrack
is able to play back these pre-recorded audio files in "real" stereo mode I would expect the same to be possible with generated sounds as well.