aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/sound.h
blob: 82dc17a281c59582a9a3094d28371e375e1ef18a (plain)
1
2
3
4
5
6
7
8
9
void *sound_open(const char *device, int samplerate);
void sound_close(void *inst);
int sound_write(void *inst, int16_t *samples_left, int16_t *samples_right, int num);
int sound_read(void *inst, int16_t *samples_left, int16_t *samples_right, int num);
int sound_get_inbuffer(void *inst);
int sound_is_stereo_capture(void *inst);
int sound_is_stereo_playback(void *inst);