comparison libaf/af.c @ 8832:a1578b329cc0

Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
author anders
date Tue, 07 Jan 2003 10:33:30 +0000
parents 906f7a2dc085
children a892e5f051e1
comparison
equal deleted inserted replaced
8831:e35d561f002e 8832:a1578b329cc0
18 extern af_info_t af_info_equalizer; 18 extern af_info_t af_info_equalizer;
19 extern af_info_t af_info_gate; 19 extern af_info_t af_info_gate;
20 extern af_info_t af_info_comp; 20 extern af_info_t af_info_comp;
21 extern af_info_t af_info_pan; 21 extern af_info_t af_info_pan;
22 extern af_info_t af_info_surround; 22 extern af_info_t af_info_surround;
23 extern af_info_t af_info_sub;
23 24
24 static af_info_t* filter_list[]={ \ 25 static af_info_t* filter_list[]={ \
25 &af_info_dummy,\ 26 &af_info_dummy,\
26 &af_info_delay,\ 27 &af_info_delay,\
27 &af_info_channels,\ 28 &af_info_channels,\
31 &af_info_equalizer,\ 32 &af_info_equalizer,\
32 &af_info_gate,\ 33 &af_info_gate,\
33 &af_info_comp,\ 34 &af_info_comp,\
34 &af_info_pan,\ 35 &af_info_pan,\
35 &af_info_surround,\ 36 &af_info_surround,\
37 &af_info_sub,\
36 NULL \ 38 NULL \
37 }; 39 };
38 40
39 // Message printing 41 // Message printing
40 af_msg_cfg_t af_msg_cfg={0,NULL,NULL}; 42 af_msg_cfg_t af_msg_cfg={0,NULL,NULL};