AudioPcmFrame

The parameters of the audio frame in PCM format.

        public struct AudioPcmFrame {
        public UInt32 capture_timestamp;
        public UInt64 samples_per_channel_;
        public int sample_rate_hz_;
        public UInt64 num_channels_;
        public BYTES_PER_SAMPLE bytes_per_sample;
        public Int16[] data_;
    };

Attributes

capture_timestamp
The timestamp (ms) of the audio frame.
samples_per_channel_
The number of samples per channel in the audio frame.
sample_rate_hz_
Audio sample rate (Hz).
num_channels_
The number of audio channels.
bytes_per_sample
The number of bytes per sample.
data_
The audio frame.