Searched defs:GoogleAudioPostProcessingBuffer (Results 1 – 1 of 1) sorted by relevance
22 struct GoogleAudioPostProcessingBuffer { struct23 uint16_t sample_size; // Bytes per sample, s16=>2, s32=>4.24 uint16_t channels; // Number of interleaved channels.25 uint32_t frames; // Total available frames.26 void *base_addr; // Start address of the circular buffer.27 void *head_ptr; // Current read/write position of the circular buffer.28 void *end_addr; // End address of the circular buffer.