Sound Byte Libs 29c5ff3
C++ firmware library for audio applications on 32-bit ARM Cortex-M processors
Loading...
Searching...
No Matches
types.hpp
Go to the documentation of this file.
1// sbl/dsp/types.hpp — Core DSP type definitions
2
3#pragma once
4
5#include <cstdint>
6
7namespace sbl::dsp {
8
9// Audio sample type: 24-bit signed in a 32-bit container.
10// Matches SAI/I2S data width and provides headroom for intermediate math.
11using Sample = int32_t;
12
13} // namespace sbl::dsp
DSP atoms for audio signal processing.
Definition allpass.hpp:22
int32_t Sample
Definition types.hpp:11