int | Channels[Get] Once setup this should display the number of channels expected to be decoded |
int | SampleRate[Get] Once setup this should display the number of samples per second expected |
bool | A property for whether the decoder can decode chunks on separate threads simultaneously or if they need to be performed sequentially. |
int Meta.Voice.Audio.Decoding.IAudioDecoder.Channels |
---|
Once setup this should display the number of channels expected to be decoded |
int Meta.Voice.Audio.Decoding.IAudioDecoder.SampleRate |
---|
Once setup this should display the number of samples per second expected |
bool Meta.Voice.Audio.Decoding.IAudioDecoder.RequireSequentialDecode |
---|
A property for whether the decoder can decode chunks on separate threads simultaneously or if they need to be performed sequentially. |
void Meta.Voice.Audio.Decoding.IAudioDecoder.Setup ( int channels, int sampleRate ) |
---|
Initial setup of the decoder Parameters channels Total channels of audio data sampleRateThe total samples per second expected |
float [] Meta.Voice.Audio.Decoding.IAudioDecoder.Decode ( byte [] chunkData, int chunkStart, int chunkLength ) |
---|
A method for returning decoded bytes into audio data Parameters chunkData A chunk of bytes to be decoded into audio data chunkStartThe array start index into account when decoding chunkLengthThe total number of bytes to be used within chunkData Returns Returns an array of audio data from 0-1 |