/* Here is where we want to apply the remaining effects. These can be processed in-place which means we want to set the input and output buffers to be the same. */
/* Here is where we want to apply the remaining effects. These can be processed in-place which means we want to set the input and output buffers to be the same. */
frameCountIn=*pFrameCountOut;/* Not a mistake. Intentionally set to *pFrameCountOut. */
frameCountIn=*pFrameCountOut;/* Not a mistake. Intentionally set to *pFrameCountOut. */
frameCountOut=*pFrameCountOut;
frameCountOut=*pFrameCountOut;
returnma_engine_effect__on_process_pcm_frames__no_pre_effect_no_pitch(pEngineEffect,pFramesOut,&frameCountIn,pFramesOut,&frameCountIn);/* Intentionally setting the input buffer to pFramesOut for in-place processing. */
returnma_engine_effect__on_process_pcm_frames__no_pre_effect_no_pitch(pEngineEffect,pFramesOut,&frameCountIn,pFramesOut,&frameCountOut);/* Intentionally setting the input buffer to pFramesOut for in-place processing. */