diff options
Diffstat (limited to 'WhisperNet/API/eSpeakerChannel.cs')
| -rw-r--r-- | WhisperNet/API/eSpeakerChannel.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/WhisperNet/API/eSpeakerChannel.cs b/WhisperNet/API/eSpeakerChannel.cs new file mode 100644 index 0000000..edb96e0 --- /dev/null +++ b/WhisperNet/API/eSpeakerChannel.cs @@ -0,0 +1,15 @@ +namespace Whisper +{ + /// <summary>Output value for iContext.detectSpeaker method</summary> + public enum eSpeakerChannel: byte + { + /// <summary>Unable to detect</summary> + Unsure = 0, + /// <summary>The speech was mostly in the left channel</summary> + Left = 1, + /// <summary>The speech was mostly in the right channel</summary> + Right = 2, + /// <summary>The audio only has 1 channel</summary> + NoStereoData = 0xFF, + } +}
\ No newline at end of file |
