/*
|
* 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_ */
|