arduino-audio-tools
Loading...
Searching...
No Matches
int24_t.h
Go to the documentation of this file.
1#pragma once
2#include "AudioToolsConfig.h"
3
4// select int24 implementation
7
8namespace audio_tools {
9#ifdef USE_3BYTE_INT24
10 using int24_t = int24_3bytes_t;
11#else
13#endif
14}
15
24bit integer which is used for I2S sound processing. The values are represented as int32_t,...
Definition Int24_4bytes_t.h:22
Generic Implementation of sound input and output for desktop environments using portaudio.
Definition AudioCodecsBase.h:10
int24_4bytes_t int24_t
Definition int24_t.h:12