robot36/delay.c

36 wiersze
1002 B
C

/*
robot36 - encode and decode images using SSTV in Robot 36 mode
Written in 2011 by <Ahmet Inan> <xdsopl@googlemail.com>
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
*/
#include "delay.h"
#include <stdlib.h>
float do_delay(struct delay *d, float input)
{
d->s[d->last] = input;
d->last = (d->last + 1) < d->len ? d->last + 1 : 0;
return d->s[d->last];
}
struct delay *alloc_delay(int samples)
{
int len = samples + 1;
struct delay *d = malloc(sizeof(struct delay));
d->s = malloc(sizeof(float) * len);
d->last = 0;
d->len = len;
for (int i = 0; i < len; i++)
d->s[i] = 0.0;
return d;
}
void free_delay(struct delay *delay)
{
free(delay->s);
free(delay);
}