Navigation
API > API/Plugins > API/Plugins/MediaIOCore > API/Plugins/MediaIOCore/FMediaIOCoreAudioSampleBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Initialize
(
TArray< int32 > InAudioBuffer, |
Initialize the sample. | MediaIOCoreAudioSampleBase.h | |
bool Initialize
(
const int32* InAudioBuffer, |
Initialize the sample. | MediaIOCoreAudioSampleBase.h |
Initialize(TArray< int32 >, uint32, uint32, FTimespan, const TOptional< FTimecode > &)
Description
Initialize the sample.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Plugins/Media/MediaIOFramework/Source/MediaIOCore/Public/MediaIOCoreAudioSampleBase.h |
| Include Path | #include "MediaIOCoreAudioSampleBase.h" |
| Source | /Engine/Plugins/Media/MediaIOFramework/Source/MediaIOCore/Private/Shared/MediaIOCoreAudioSampleBase.cpp |
bool Initialize
(
TArray < int32 > InAudioBuffer,
uint32 InNumberOfChannels,
uint32 InSampleRate,
FTimespan InTime,
const TOptional < FTimecode > & InTimecode
)
Parameters
| Name | Remarks |
|---|---|
| InAudioBuffer | The audio frame data. |
| InNumberOfChannels | The number of channel of the audio buffer. |
| InSampleRate | The sample rate of the audio buffer. |
| InTime | The sample time (in the player's own clock). |
| InTimecode | The sample timecode if available. |
Initialize(const int32 *, uint32, uint32, uint32, FTimespan, const TOptional< FTimecode > &)
Description
Initialize the sample.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Plugins/Media/MediaIOFramework/Source/MediaIOCore/Public/MediaIOCoreAudioSampleBase.h |
| Include Path | #include "MediaIOCoreAudioSampleBase.h" |
| Source | /Engine/Plugins/Media/MediaIOFramework/Source/MediaIOCore/Private/Shared/MediaIOCoreAudioSampleBase.cpp |
bool Initialize
(
const int32 * InAudioBuffer,
uint32 InBufferSize,
uint32 InNumberOfChannels,
uint32 InSampleRate,
FTimespan InTime,
const TOptional < FTimecode > & InTimecode
)
Parameters
| Name | Remarks |
|---|---|
| InAudioBuffer | The audio frame data. |
| InBufferSize | The size of the audio buffer. |
| InNumberOfChannels | The number of channel of the audio buffer. |
| InSampleRate | The sample rate of the audio buffer. |
| InTime | The sample time (in the player's own clock). |
| InTimecode | The sample timecode if available. |