Navigation
API > API/Runtime > API/Runtime/SignalProcessing > API/Runtime/SignalProcessing/IConvertDeinterleave
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ProcessAudio
(
TArrayView< const float > InSamples, |
Deinterleave and convert the channel format of the input audio. | DSP/ConvertDeinterleave.h | |
void ProcessAudio
(
TArrayView< const float > InSamples, |
Deinterleave and convert the channel format of the input audio. | DSP/ConvertDeinterleave.h |
ProcessAudio(TArrayView< const float >, FMultichannelBuffer &)
Description
Deinterleave and convert the channel format of the input audio.
| Name | ProcessAudio |
| Type | function |
| Header File | /Engine/Source/Runtime/SignalProcessing/Public/DSP/ConvertDeinterleave.h |
| Include Path | #include "DSP/ConvertDeinterleave.h" |
void ProcessAudio
(
TArrayView< const float > InSamples,
FMultichannelBuffer & OutSamples
) const
Parameters
| Name | Remarks |
|---|---|
| InSamples | ArrayView of interleaved input samples. The number of samples must be evenly divisible by the number of input channels. |
| OutSamples | A multichannel buffer of samples generated by deinterleaving the input samples and possibly upmixing or downmixing them to the target channel count. |
ProcessAudio(TArrayView< const float >, const TArray< TArrayView< float > > &)
Description
Deinterleave and convert the channel format of the input audio.
| Name | ProcessAudio |
| Type | function |
| Header File | /Engine/Source/Runtime/SignalProcessing/Public/DSP/ConvertDeinterleave.h |
| Include Path | #include "DSP/ConvertDeinterleave.h" |
void ProcessAudio
(
TArrayView< const float > InSamples,
const TArray< TArrayView< float > > & OutMultiChannelAudio
) const
Parameters
| Name | Remarks |
|---|---|
| InSamples | ArrayView of interleaved input samples. The number of samples must be evenly divisible by the number of input channels. |
| OutMultiChannelAudio | A multichannel buffer of samples generated by deinterleaving the input samples and possibly upmixing or downmixing them to the target channel count. |