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

#include <stddef.h>

int mr_init(double sample_rate, int n_channels);

int mr_terminate();

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

#endif