namespace Whisper
{
/// Output value for iContext.detectSpeaker method
public enum eSpeakerChannel: byte
{
/// Unable to detect
Unsure = 0,
/// The speech was mostly in the left channel
Left = 1,
/// The speech was mostly in the right channel
Right = 2,
/// The audio only has 1 channel
NoStereoData = 0xFF,
}
}