aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/jitter.h
blob: 658da192b08ce1874e34b74c11562a5a7b245089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef struct jitter {
	sample_t		*spl;			/* pointer to sample buffer */
	int			len;			/* buffer size: number of samples */
	int			inptr, outptr;		/* write pointer and read pointer */
} jitter_t;

int jitter_create(jitter_t *jitter, int length);
void jitter_destroy(jitter_t *jitter);
void jitter_save(jitter_t *jb, sample_t *samples, int length);
void jitter_load(jitter_t *jb, sample_t *samples, int length);
void jitter_clear(jitter_t *jb);