forked from len0rd/rockbox
rbcodec dsp: Replace enum dsp_ids arguments with unsigned int
Because casting to and from "enum dsp_id" just adds noise, change everything to unsigned int. Change-Id: I52a7ae55f406e673d5b811b29657fcdc4b62ab10
This commit is contained in:
parent
b96b7640de
commit
34a092a997
9 changed files with 19 additions and 27 deletions
|
@ -714,7 +714,7 @@ struct plugin_api {
|
|||
#endif
|
||||
intptr_t (*dsp_configure)(struct dsp_config *dsp,
|
||||
unsigned int setting, intptr_t value);
|
||||
struct dsp_config * (*dsp_get_config)(enum dsp_ids id);
|
||||
struct dsp_config * (*dsp_get_config)(unsigned int dsp_id);
|
||||
void (*dsp_process)(struct dsp_config *dsp, struct dsp_buffer *src,
|
||||
struct dsp_buffer *dst);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue