Audio Effects SDK
AI-powered SDK for real-time audio enhancement.
Loading...
Searching...
No Matches
audio_format.h
Go to the documentation of this file.
1#ifndef AUDIO_EFFECTS_SDK_AUDIO_FORMAT_H
2#define AUDIO_EFFECTS_SDK_AUDIO_FORMAT_H
3
5
6#include <stdint.h>
7
8namespace audio_effects_sdk {
9
11enum AudioFormatType : int32_t {
14};
15
16}
17
18#endif
AudioFormatType
Format of audio frames that the SDK work with.
Definition audio_format.h:11
@ pcmFloat32
A raw format where each frame is sequence native-endian floats.
Definition audio_format.h:12
@ pcmSignedInt16
A raw format where each frame is sequence native-endian signed 16-bit integers.
Definition audio_format.h:13