You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
374 B
14 lines
374 B
typedef struct { |
|
void *faust; |
|
int argpos; |
|
SPFLOAT *args[3]; |
|
SPFLOAT *atk; |
|
SPFLOAT *rel; |
|
SPFLOAT *bwratio; |
|
} sp_vocoder; |
|
|
|
int sp_vocoder_create(sp_vocoder **p); |
|
int sp_vocoder_destroy(sp_vocoder **p); |
|
int sp_vocoder_init(sp_data *sp, sp_vocoder *p); |
|
int sp_vocoder_compute(sp_data *sp, sp_vocoder *p, SPFLOAT *source, SPFLOAT *excite, SPFLOAT *out); |
|
|
|
|