AudioPcmFrame

Information about external PCM format audio frames.

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_;
    };

Properties

capture_timestamp
Timestamp of the audio frame (ms).
samples_per_channel_
Number of samples per channel.
sample_rate_hz_
Audio sampling rate (Hz).
num_channels_
Number of audio channels.
bytes_per_sample
Number of bytes in the audio data.
data_
Audio frame data.