Skip to content

typedef audio_data_interleaved audio

using audio_data_interleaved = audio_data<true>

Alias for audio_data with interleaved storage.

{'typedef': 'audio_data_interleaved'}This type alias represents audio data where the samples are stored in an interleaved format. Interleaved audio data means that the samples for multiple channels are stored sequentially in memory. For example, in a stereo audio signal, the data would be stored as: L1, R1, L2, R2, ..., where L and R represent the left and right channel samples, respectively.

See also: audio_data

Defined at audio/data.hpp:847