2021-04-08 16:14:40 -04:00
|
|
|
/*
|
2023-08-08 18:31:48 -04:00
|
|
|
Copyright (c) 2021 Devine Lu Linvega, Andrew Alderwick
|
2021-04-08 16:14:40 -04:00
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef signed int Sint32;
|
|
|
|
|
2023-08-08 17:13:07 -04:00
|
|
|
#define AUDIO_VERSION 1
|
2023-08-08 17:44:17 -04:00
|
|
|
#define AUDIO_DEIMASK 0x0014
|
|
|
|
#define AUDIO_DEOMASK 0x8000
|
2023-08-08 17:13:07 -04:00
|
|
|
|
2023-10-10 09:39:47 -04:00
|
|
|
#define AUDIO_BUFSIZE 256.0f
|
|
|
|
#define SAMPLE_FREQUENCY 44100.0f
|
2021-12-28 16:47:35 -05:00
|
|
|
#define POLYPHONY 4
|
2021-04-08 16:14:40 -04:00
|
|
|
|
2022-03-17 12:59:36 -04:00
|
|
|
Uint8 audio_get_vu(int instance);
|
|
|
|
Uint16 audio_get_position(int instance);
|
|
|
|
int audio_render(int instance, Sint16 *sample, Sint16 *end);
|
2023-01-02 10:01:55 -05:00
|
|
|
void audio_start(int instance, Uint8 *d, Uxn *u);
|
2022-03-17 12:59:36 -04:00
|
|
|
void audio_finished_handler(int instance);
|
2023-10-10 10:12:47 -04:00
|
|
|
void audio_handler(void *ctx, Uint8 *out_stream, int len);
|