Navigation
API > API/Runtime > API/Runtime/AudioMixerCore
EAudioOutputStreamState Specifies the state of the output audio stream.
| Name | Audio::EAudioOutputStreamState::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/AudioMixerCore/Public/AudioMixerTypes.h |
| Include Path | #include "AudioMixerTypes.h" |
Syntax
namespace Audio
{
namespace EAudioOutputStreamState
{
enum Type
{
Closed,
Open,
Stopped,
Stopping,
Running,
SwappingDevice,
}
}
}
Values
| Name | Remarks |
|---|---|
| Closed | The audio stream is shutdown or not uninitialized. |
| Open | The audio stream is open but not running. |
| Stopped | The audio stream is open but stopped. |
| Stopping | The audio output stream is stopping. |
| Running | The audio output stream is open and running. |
| SwappingDevice | The audio device hardware is being swapped |