Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Sound
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/Sound/StreamedAudioChunkSeekTable.h |
| Include | #include "Sound/StreamedAudioChunkSeekTable.h" |
Syntax
class FStreamedAudioChunkSeekTable
Remarks
Class representing a audio seek-table. Typically embedded in a bit-stream.
Constructors
| Type | Name | Description | |
|---|---|---|---|
FStreamedAudioChunkSeekTable
(
EChunkSeekTableMode InMode |
Construct a seek-table. The mode determines the internal representation. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Add
(
uint32 InTimeInAudioFrames, |
Add an item to the seek table. | |
| int32 | CalcSize
(
int32 NumEntries, |
Calculate the size needed for the table. | |
| uint32 | FindOffset
(
uint32 InTimeInAudioFrames |
Finds an offset for seeking given a time | |
| uint32 | FindTime
(
uint32 InOffset |
Finds a time given an offset (reverse look up) | |
| int32 | Num () |
Get the number of Entries in the seek table. | |
| bool | Parse
(
const uint8* InMemory, |
Parse a seek-table from memory. | |
| void | Reset () |
Empties the table. | |
| bool | Serialize the table to/from the archive |
Classes
| Type | Name | Description | |
|---|---|---|---|
| ISeekTableImpl |