Sound Byte Libs
29c5ff3
C++ firmware library for audio applications on 32-bit ARM Cortex-M processors
Loading...
Searching...
No Matches
src
sbl
dsp
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
7
namespace
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.
11
using
Sample
= int32_t;
12
13
}
// namespace sbl::dsp
sbl::dsp
DSP atoms for audio signal processing.
Definition
allpass.hpp:22
sbl::dsp::Sample
int32_t Sample
Definition
types.hpp:11
Generated by
1.9.8