Interface IAudioOutputFactory
An abstract factory that creates IAudioOutput based on given parameters.
Namespace: Adrenak.UniVoice
Assembly: cs.temp.dll.dll
Syntax
public interface IAudioOutputFactory
Methods
Create(Int32, Int32, Int32)
Creates an instance of a concrete IAudioOutput class
Declaration
IAudioOutput Create(int frequency, int channelCount, int samplesLen)
Parameters
Type | Name | Description |
---|---|---|
Int32 | frequency | Frequency/sample rate of the audio |
Int32 | channelCount | Number of audio channels in data |
Int32 | samplesLen | Number of samples in audio segment |
Returns
Type | Description |
---|---|
IAudioOutput |