summaryrefslogtreecommitdiff
path: root/src/mossrose.h
blob: fb7d08826e26f215009d02b7c33697993e41dc0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MOSSROSE_H
#define MOSSROSE_H

#include <stddef.h>

int mossrose_init(double sample_rate, int n_channels);

int mossrose_terminate();

int mossrose_play(float *left, float *right, size_t n_samples, int channel);

#endif