1 #ifndef EQUALIZER_H
2 #define EQUALIZER_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 void equalizer_init();
9 void equalizer_shutdown();
10 void equalizer_process_buffer(char *buf, size_t size, const struct sound_params *sound_params);
11 void equalizer_refresh();
12 int equalizer_is_active();
13 int equalizer_set_active(int active);
14 char *equalizer_current_eqname();
15 void equalizer_next();
16 void equalizer_prev();
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif
23