namespace Whisper
{
/// Status of the voice capture
[Flags]
public enum eCaptureStatus: byte
{
/// Doing nothing
None = 0,
/// Capturing the audio
Listening = 1,
/// A voice is detected in the captured audio, recording
Voice = 2,
/// Transcribing a recorded piece of the audio
Transcribing = 4,
/// The computer is unable to transcribe the audio quickly enough,
/// and the capture is dropping the incoming audio samples.
Stalled = 0x80,
}
}