1
0
Fork 0
forked from len0rd/rockbox

Consolidate compressor settings into a struct.

Doing that makes things cleaner for later on.

Change-Id: I4e279aa57ace16a348acc0fc09059592325ec95f
This commit is contained in:
Michael Sevakis 2012-04-26 17:19:16 -04:00
parent 97a535d83c
commit 0842d7f7e1
8 changed files with 222 additions and 217 deletions

View file

@ -23,7 +23,7 @@
#define COMPRESSOR_H
void compressor_process(int count, struct dsp_data *data, int32_t *buf[]);
bool compressor_update(void);
bool compressor_update(const struct compressor_settings *settings);
void compressor_reset(void);
#endif /* COMPRESSOR_H */