ovr_Voip_SetMicrophoneFilterCallback Function
This function allows you to set a callback that will be called every time audio data is captured by the microphone. The callback function must match this signature: void filterCallback(int16_t pcmData[], size_t pcmDataLength, int frequency, int numChannels); The pcmData param is used for both input and output. pcmDataLength is the size of pcmData in elements. numChannels will be 1 or 2. If numChannels is 2, then the channel data will be interleaved in pcmData. Frequency is the input data sample rate in hertz.
This function can be safely called from any thread.
void ovr_Voip_SetMicrophoneFilterCallback(VoipFilterCallback cb)
cb: VoipFilterCallback
A pointer to a callback function that will be called every time audio data is captured by the microphone.
void