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 | PCM can be decoded in any order prior to merging back in |
void | Initial setup of the decoder |
int | GetTotalSamples ( ulong contentLength ) Gets pcm sample count from byte content length (1 sample = 2 bytes) |
float [] | A method for returning decoded bytes into audio data |
static int | GetTotalSamplesPCM16 ( ulong contentLength ) Gets pcm sample count from byte content length (1 sample = 2 bytes) |
static int | GetTotalSamplesPCM16 ( int contentLength ) Gets pcm sample count from byte content length |
static float [] | DecodePCM16 ( byte [] rawData ) |
static float |
int Meta.Voice.Audio.Decoding.AudioDecoderPcm.Channels |
---|
Once setup this should display the number of channels expected to be decoded |
int Meta.Voice.Audio.Decoding.AudioDecoderPcm.SampleRate |
---|
Once setup this should display the number of samples per second expected |
bool Meta.Voice.Audio.Decoding.AudioDecoderPcm.RequireSequentialDecode |
---|
PCM can be decoded in any order prior to merging back in |
void Meta.Voice.Audio.Decoding.AudioDecoderPcm.Setup ( int channels, int sampleRate ) |
---|
Initial setup of the decoder Parameters channels Total channels of audio data sampleRateThe rate of audio data received |
int Meta.Voice.Audio.Decoding.AudioDecoderPcm.GetTotalSamples ( ulong contentLength ) |
---|
Gets pcm sample count from byte content length (1 sample = 2 bytes) Parameters contentLength The provided number of bytes |
float [] Meta.Voice.Audio.Decoding.AudioDecoderPcm.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 |
static int Meta.Voice.Audio.Decoding.AudioDecoderPcm.GetTotalSamplesPCM16 ( ulong contentLength ) |
---|
Gets pcm sample count from byte content length (1 sample = 2 bytes) Parameters contentLength The provided number of bytes |
static int Meta.Voice.Audio.Decoding.AudioDecoderPcm.GetTotalSamplesPCM16 ( int contentLength ) |
---|
Gets pcm sample count from byte content length Parameters contentLength The provided number of bytes |
static float [] Meta.Voice.Audio.Decoding.AudioDecoderPcm.DecodePCM16 ( byte [] rawData ) |
---|
No description available.
|
static float Meta.Voice.Audio.Decoding.AudioDecoderPcm.DecodeSamplePCM16 ( byte [] rawData, int index ) |
---|
No description available.
|