Sound Bakery  v0.1.0
Open-source audio middleware for games
Loading...
Searching...
No Matches
sound_chef_dsp.h
Go to the documentation of this file.
1
8#ifndef SOUND_CHEF_DSP
9#define SOUND_CHEF_DSP
10
11enum
12{
13 SC_STRING_NAME_LENGTH = 16
14};
15
16#ifdef __cplusplus
17extern "C"
18{
19#endif
20
21 typedef enum sc_dsp_parameter_type
22 {
23 SC_DSP_PARAMETER_TYPE_FLOAT
24 } sc_dsp_parameter_type;
25
27 {
28 float min;
29 float max;
30 float value;
32
34 {
35 sc_dsp_parameter_type type;
36 char name[SC_STRING_NAME_LENGTH];
37
38 union
39 {
40 sc_dsp_parameter_float floatParameter;
41 };
42 };
43
44 typedef enum sc_dsp_lowpass
45 {
46 SC_DSP_LOWPASS_CUTOFF,
47 SC_DSP_LOWPASS_NUM_PARAM
48 } sc_dsp_lowpass;
49
50 typedef enum sc_dsp_highpass
51 {
52 SC_DSP_HIGHPASS_CUTOFF,
53 SC_DSP_HIGHPASS_NUM_PARAM
54 } sc_dsp_highpass;
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif
Definition sound_chef_dsp.h:27
Definition sound_chef_dsp.h:34