collection of audio DSP plugins
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.
|
typedef struct { |
|
SPFLOAT step; |
|
SPFLOAT min; |
|
SPFLOAT max; |
|
SPFLOAT val; |
|
} sp_incr; |
|
|
|
int sp_incr_create(sp_incr **p); |
|
int sp_incr_destroy(sp_incr **p); |
|
int sp_incr_init(sp_data *sp, sp_incr *p, SPFLOAT val); |
|
int sp_incr_compute(sp_data *sp, sp_incr *p, SPFLOAT *in, SPFLOAT *out);
|
|
|