namespace Adrenak.UniVoice { [System.Serializable] /// /// A data structure representing the audio transmitted over the network. /// public struct AudioFrame { /// /// The UTC Unix timestamp (in ms) when the samples were captured. /// The timestamp is local to the client the audio was captured from. /// public long timestamp; /// /// The frequency (or sampling rate) of the audio /// public int frequency; /// /// The number of channels in the audio /// public int channelCount; /// /// A byte array representing the audio data /// public byte[] samples; } }