EM MIDI Arduino Lib 1.0.1
Loading...
Searching...
No Matches
midi_chorus_reverberation.h
Go to the documentation of this file.
1#pragma once
2
3#ifndef _EM_MIDI_CHORUS_REVERBERATION_H_
4#define _EM_MIDI_CHORUS_REVERBERATION_H_
5/**
6 * @~Chinese
7 * @file midi_chorus_reverberation.h
8 * @brief 定义混响效果类型和合唱效果类型常量。
9 *
10 * @~English
11 * @file midi_chorus_reverberation.h
12 * @brief Define constants for reverberation effect types and chorus effect types.
13 */
14
15/**
16 * @~Chinese
17 * @brief 定义混响效果类型常量。
18 */
19/**
20 * @~English
21 * @brief Define reverberation effect type constants.
22 *
23 */
24
25/**
26 * @~Chinese
27 * @brief 房间混响类型1
28 */
29/**
30 * @~English
31 * @brief Room reverberation type 1
32 */
33#define EM_MIDI_REVERBERATION_ROOM_1 (0)
34
35/**
36 * @~Chinese
37 * @brief 房间混响类型2
38 */
39/**
40 * @~English
41 * @brief Room reverberation type 2
42 */
43#define EM_MIDI_REVERBERATION_ROOM_2 (1)
44
45/**
46 * @~Chinese
47 * @brief 房间混响类型3
48 */
49/**
50 * @~English
51 * @brief Room reverberation type 3
52 */
53#define EM_MIDI_REVERBERATION_ROOM_3 (2)
54
55/**
56 * @~Chinese
57 * @brief 大厅混响类型1
58 */
59/**
60 * @~English
61 * @brief Hall reverberation type 1
62 */
63#define EM_MIDI_REVERBERATION_HALL_1 (3)
64
65/**
66 * @~Chinese
67 * @brief 大厅混响类型2
68 */
69/**
70 * @~English
71 * @brief Hall reverberation type 2
72 */
73#define EM_MIDI_REVERBERATION_HALL_2 (4)
74
75/**
76 * @~Chinese
77 * @brief 板式混响效果
78 */
79/**
80 * @~English
81 * @brief Plate reverberation effect
82 */
83#define EM_MIDI_REVERBERATION_PLATE (5)
84
85/**
86 * @~Chinese
87 * @brief 延迟混响效果
88 */
89/**
90 * @~English
91 * @brief Delay reverberation effect
92 */
93#define EM_MIDI_REVERBERATION_DELAY (6)
94
95/**
96 * @~Chinese
97 * @brief 声像延迟混响效果。
98 */
99/**
100 * @~English
101 * @brief Panning delay reverberation effect.
102 */
103#define EM_MIDI_REVERBERATION_PAN_DELAY (7)
104
105/**
106 * @~Chinese
107 * @brief 定义合唱效果类型常量。
108 */
109/**
110 * @~English
111 * @brief Define chorus effect type constants.
112 */
113
114/**
115 * @~Chinese
116 * @brief 合唱效果类型1
117 */
118/**
119 * @~English
120 * @brief Chorus effect type 1
121 */
122#define EM_MIDI_CHORUS_1 (0)
123
124/**
125 * @~Chinese
126 * @brief 合唱效果类型2
127 */
128/**
129 * @~English
130 * @brief Chorus effect type 2
131 */
132#define EM_MIDI_CHORUS_2 (1)
133
134/**
135 * @~Chinese
136 * @brief 合唱效果类型3
137 */
138/**
139 * @~English
140 * @brief Chorus effect type 3
141 */
142#define EM_MIDI_CHORUS_3 (2)
143
144/**
145 * @~Chinese
146 * @brief 合唱效果类型4
147 */
148/**
149 * @~English
150 * @brief Chorus effect type 4
151 */
152#define EM_MIDI_CHORUS_4 (3)
153
154/**
155 * @~Chinese
156 * @brief 反馈式合唱效果
157 */
158/**
159 * @~English
160 * @brief Feedback chorus effect
161 */
162#define EM_MIDI_CHORUS_FEEDBACK (4)
163
164/**
165 * @~Chinese
166 * @brief 镶边合唱效果(结合法兰效果)
167 */
168/**
169 * @~English
170 * @brief Flanger-style chorus effect
171 */
172#define EM_MIDI_CHORUS_FLANGER (5)
173
174/**
175 * @~Chinese
176 * @brief 短延迟合唱效果
177 */
178/**
179 * @~English
180 * @brief Short delay chorus effect
181 */
182#define EM_MIDI_CHORUS_SHORT_DELAY (6)
183
184/**
185 * @~Chinese
186 * @brief 反馈延迟合唱效果
187 */
188/**
189 * @~English
190 * @brief Feedback delay chorus effect
191 */
192#define EM_MIDI_CHORUS_FEEDBACK_DELAY (7)
193
194#endif