moved delay to own files

This commit is contained in:
Ahmet Inan 2011-09-08 14:16:43 +02:00
parent 27132b6e00
commit 1e7c47c1e2
4 changed files with 44 additions and 31 deletions

14
delay.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef DELAY_H
#define DELAY_H
typedef struct {
float *s;
int last;
int len;
} delay_t;
float do_delay(delay_t *, float);
delay_t *alloc_delay(int);
void free_delay(delay_t *);
#endif