chenlh
2025-09-18 ab07ada908b82340e7acd899e85a9802cf8a9057
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
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * scene.h
 * Description:
 *
 *  Created on: 2014-10-28
 *      Author: Graydon
 *  Modify:
 */
 
#ifndef CREATE_H_
#define CREATE_H_
 
class tg_param_convert{
public:
    static u32 SignalgenParamCtrl(IModule* m, void* handle, int &plen);
    static u32 InputParamCtrl(IModule* m, void* handle, int &plen);
    static u32 GainParamCtrl(IModule* m, void* handle, int &plen);
    static u32 OutputParamCtrl(IModule* m, void* handle, int &plen);
    static u32 EqParamCtrl(IModule* m, void* handle, int &plen);
    static u32 ExpanderParamCtrl(IModule* m, void* handle, int &plen);
    static u32 CompressParamCtrl(IModule* m, void* handle, int &plen);
    static u32 LimitParamCtrl(IModule* m, void* handle, int &plen);
    static u32 MixerParamCtrl(IModule* m, void* handle, int &plen);
    static u32 DelayParamCtrl(IModule* m, void* handle, int &plen);
    static u32 CrossoverParamCtrl(IModule* m, void* handle, int &plen);
    static u32 FeedbackParamCtrl(IModule* m, void* handle, int &plen);
    static u32 AutomixerParamCtrl(IModule* m, void* handle, int &plen);
    static u32 AgcParamCtrl(IModule* m, void* handle, int &plen);
    static u32 AecParamCtrl(IModule* m, void* handle, int &plen);
    static u32 AnsParamCtrl(IModule* m, void* handle, int &plen);
    static u32 SysctlParamCtrl(IModule* m, void* handle, int &plen);
    static u32 SelectorParamCtrl(IModule* m, void* handle, int &plen);
    static u32 Gating_automixerParamCtrl(IModule* m, void* handle, int &plen);
    static u32 DuckerParamCtrl(IModule* m, void* handle, int &plen);
    static u32 GatingParamCtrl(IModule* m, void* handle, int &plen);
    static u32 SplParamCtrl(IModule* m, void* handle, int &plen);
    static u32 GeqParamCtrl(IModule* m, void* handle, int &plen);
    static u32 ReverbParamCtrl(IModule* m, void* handle, int &plen);
    static u32 EchoParamCtrl(IModule* m, void* handle, int &plen);
    static u32 FirParamCtrl(IModule* m, void* handle, int &plen);
    static u32 EmptyParamCtrl(IModule* m, void* handle, int &plen);
};
 
#endif /* SCENE_H_ */