Firelight Technologies FMOD Studio API
Retrieves a pointer to a DSP unit which is acting as an output to this unit.
FMOD_RESULT DSP::getOutput(
int index,
FMOD::DSP **output,
FMOD::DSPConnection **outputconnection
);
FMOD_RESULT FMOD_DSP_GetOutput(
FMOD_DSP *dsp,
int index,
FMOD_DSP **output,
FMOD_DSPCONNECTION **outputconnection
);
If the function succeeds then the return value is FMOD_OK.
If the function fails then the return value will be one of the values defined in the FMOD_RESULT enumeration.
An output is a unit which this unit will feed data too once it has processed its data.
Find out the number of output units to this unit by calling DSP::getNumOutputs.
Performance warning! Because this function needs to flush the dsp queue before it can determine if the specified numerical output is available or not, this function may block significantly while the background mixer thread operates.
Note: The connection pointer retrieved here will become invalid if you disconnect the 2 dsp units that use it.
Version 1.03.06 Built on Apr 17, 2014