I’m trying to use
juce::AudioDataConverters::deinterleaveSamples
to deinterleave a sample so I can write with my ThreadedWriter:
threadedWriter.reset (new juce::AudioFormatWriter::ThreadedWriter (writer, backgroundThread, 32768));
threadedWriter->write(????,
getCurrentRecorder()->sharedConsumableRotatingBuffer->buffer.size());
How do I create the float** dest
? Is there some functions that do this?
static void AudioDataConverters::deinterleaveSamples ( const float * source ,