aboutsummaryrefslogtreecommitdiff
path: root/soundout/soundout.h
diff options
context:
space:
mode:
Diffstat (limited to 'soundout/soundout.h')
-rw-r--r--soundout/soundout.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/soundout/soundout.h b/soundout/soundout.h
new file mode 100644
index 0000000..aea926f
--- /dev/null
+++ b/soundout/soundout.h
@@ -0,0 +1,16 @@
+#ifndef MYON_SOUNDOUT_H_INCLUDED
+#define MYON_SOUNDOUT_H_INCLUDED
+
+#include <stdint.h>
+
+typedef void (*sound_callback)(void *userptr, int16_t *buf, unsigned frames);
+
+struct sound_state {
+ void (*pause)(struct sound_state *state, int pause, int flush);
+ void (*free)(struct sound_state *state);
+ const char *apiname;
+};
+
+struct sound_state *sound_init(const char *clientname, unsigned srate, sound_callback cbfunc, void *userptr);
+
+#endif // MYON_SOUNDOUT_H_INCLUDED