qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
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
#ifndef _SANECORE_ADSP_ADUPROC_H__
#define _SANECORE_ADSP_ADUPROC_H__
 
#include "scene.h"
 
void sport_isr(int sig_int);
 
void sport_usb_isr(int sig_int);
 
void aud_process(void);
 
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 automixer_execute(pautomixer_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 BuiltIn_Expander(void *Expander, int channel_id);
 
#endif