summaryrefslogtreecommitdiff
path: root/examples/example.c
blob: 960b9f2a51497315ade711a8fda9e65e2732b301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <mossrose.h>
#include <portaudio.h>


#define SAMPLE_RATE 44100
#define N_CHANNELS 8

int main()
{
	mr_init(SAMPLE_RATE, N_CHANNELS);
	Pa_Sleep(3000);
	mr_terminate();
	return 0;
}