1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| /*
| * tg_user_ctrl.h
| *
| * Created on: 2025Äê7ÔÂ24ÈÕ
| * Author: 86189
| */
|
| #ifndef TG_TG_USER_CTRL_H_
| #define TG_TG_USER_CTRL_H_
|
|
| class tg_param_ctrl {
| public:
| static u32 Signalgen_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Input_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Gain_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Output_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Mixer_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Crossover_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Feedback_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Automixer_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Aec_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Sysctl_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Geq_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Reverb_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Echo_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 General_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| static u32 Fir_Ctrl(IModule* m, u32 pID, s16* val_c, u32 num);
| };
|
|
| #endif /* TG_TG_USER_CTRL_H_ */
|
|