summaryrefslogtreecommitdiffstats
path: root/WhisperNet/API/eCaptureStatus.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WhisperNet/API/eCaptureStatus.cs')
-rw-r--r--WhisperNet/API/eCaptureStatus.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/WhisperNet/API/eCaptureStatus.cs b/WhisperNet/API/eCaptureStatus.cs
new file mode 100644
index 0000000..41f05fb
--- /dev/null
+++ b/WhisperNet/API/eCaptureStatus.cs
@@ -0,0 +1,19 @@
+namespace Whisper
+{
+ /// <summary>Status of the voice capture</summary>
+ [Flags]
+ public enum eCaptureStatus: byte
+ {
+ /// <summary>Doing nothing</summary>
+ None = 0,
+ /// <summary>Capturing the audio</summary>
+ Listening = 1,
+ /// <summary>A voice is detected in the captured audio, recording</summary>
+ Voice = 2,
+ /// <summary>Transcribing a recorded piece of the audio</summary>
+ Transcribing = 4,
+ /// <summary>The computer is unable to transcribe the audio quickly enough,<br/>
+ /// and the capture is dropping the incoming audio samples.</summary>
+ Stalled = 0x80,
+ }
+} \ No newline at end of file