blob: 90fd410bda6110fdf32a2efc23f6247305454d48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SYNTH_H_
#define SYNTH_H_
#define AUDIO_FREQ 44100
#define AUDIO_SAMPLES 64
#define AUDIO_CHANNELS 2
typedef struct {
char *soundfont_file;
} SynthArgs;
void *synth(void *arg);
#endif // SYNTH_H_
|