qipp
2025-09-16 e7ac407a6aa40e94a34a772dee14e8d5fb55c45b
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
51
52
53
54
55
56
57
#ifndef _SANECORE_ADSP_ADUPROC_H__
#define _SANECORE_ADSP_ADUPROC_H__
 
#include "scene.h"
 
void sport_isr(int sig_int);
 
void sport3_isr(int sig_int);
 
void sport_usb_isr(int sig_int);
 
void aud_process(void);
 
int empty_execute(void* handle);
 
int input_execute(pinput_handle handle);
 
int meter_execute(pmeter_handle handle);
 
int delay_execute(pdelay_handle handle);
 
int eq_execute(peq_handle handle);
 
int expander_execute(pexpander_handle handle);
 
int compressor_execute(pcompressor_handle handle);
 
int mixer_execute(pmixer_handle handle);
 
int crossover_execute(pcrossover_handle handle);
 
int output_execute(poutput_handle handle);
 
int gain_execute(pgain_handle handle);
 
int feedback_execute(pfeedback_handle handle);
 
int gainsharing_automixer_execute(pgainsharing_mixer_handle handle);
 
int fir_execute(pcommon_handle handle);
 
int aec_execute(paec_handle handle);
int agc_execute(pagc_handle handle);
int ans_execute(pans_handle handle);
int selector_execute(pselector_handle handle);
int sysctl_execute(psysctl_handle handle);
int afc_execute(pafc_handle handle);
 
int gating_automixer_execute(pgating_mixer_handle handle);
int spl_execute(pspl_handle handle);
int gate_execute(pgate_handle handle);
int ducker_execute(pducker_handle handle);
int reverb_execute(preverb_handle handle);
int echo_execute(pecho_handle handle);
int geq_execute(pgeq_handle handle);
 
#endif