summaryrefslogtreecommitdiffstats
path: root/WhisperNet/API/eSpeakerChannel.cs
blob: edb96e0e44ec9c0cc2febcf3c32221f9acbc5a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
	}
}