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
45
46
47
48
49
50
| /*
| * scene.h
| * Description:
| *
| * Created on: 2014-10-28
| * Author: Graydon
| * Modify:
| */
|
| #ifndef CREATE_H_
| #define CREATE_H_
|
| #include "scene.h"
|
| void* input_create(ptag_input pInput,char* inport_str,char* outport_str);
|
| void* output_create(ptag_output pOutput, char* inport_str, char* outport_str);
|
| void* delay_create( ptag_delay pDelay, char* inport_str, char* outport_str);
|
| void* eq_create(ptag_eq pEQ, char* inport_str, char* outport_str);
|
| void* expander_create(ptag_expander pExpander, char* inport_str, char* outport_str);
|
| void* compressor_create(ptag_compress pcompress, char* inport_str, char* outport_str);
|
| void* mixer_create(ptag_mixer pMixer, char* inport_str, char* outport_str);
|
| void* crossover_create(ptag_crossover pCross, char* inport_str, char* outport_str);
|
| void* meter_create(ptag_Meter pMeter, char* inport_str, char* outport_str);
|
| void* gain_create(ptag_gain pgain, char* inport_str, char* outport_str);
|
| void* feedback_create(ptag_feedback pfeedback, char* inport_str,char* outport_str);
|
| void* automixer_create(ptag_automixer pautomixer, char* inport_str,char* outport_str);
|
| void* shelf_create(ptag_shelf pshelf,char* inport_str, char* outport_str);
|
|
| void* agc_create(ptag_agc pagc,char* inport_str, char* outport_str);
| void* ans_create(ptag_ans pans,char* inport_str, char* outport_str);
| void* aec_create(ptag_aec paec,char* inport_str, char* outport_str);
| void* selector_create(ptag_selector pselector,char* inport_str, char* outport_str);
| void* sysctl_create(ptag_sysctl psysctl,char* inport_str, char* outport_str);
|
| void* fir_create(ptag_fir pfir, char* inport_str,char* ourport_str);
|
| #endif /* SCENE_H_ */
|
|