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 val; |
|
} sp_samphold; |
|
|
|
int sp_samphold_create(sp_samphold **p); |
|
int sp_samphold_destroy(sp_samphold **p); |
|
int sp_samphold_init(sp_data *sp, sp_samphold *p); |
|
int sp_samphold_compute(sp_data *sp, sp_samphold *p, SPFLOAT *trig, SPFLOAT *in, SPFLOAT *out);
|
|
|