summaryrefslogtreecommitdiff
path: root/modules/winwave/winwave.h
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2014-02-09 11:50:07 +0100
committerAlfred E. Heggestad <aeh@db.org>2014-02-09 11:50:07 +0100
commit98bf08bdcf2edd9d397f32650a8bfe62186fbecf (patch)
treeebc6ec71f44bff8c42e4eefced61948623df02fc /modules/winwave/winwave.h
parente6ad5cf4401b860ba402d4b7b3c7c254bc87a019 (diff)
baresip 0.4.10
Diffstat (limited to 'modules/winwave/winwave.h')
-rw-r--r--modules/winwave/winwave.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/winwave/winwave.h b/modules/winwave/winwave.h
new file mode 100644
index 0000000..ccccddf
--- /dev/null
+++ b/modules/winwave/winwave.h
@@ -0,0 +1,20 @@
+/**
+ * @file winwave.h Windows sound driver -- internal api
+ *
+ * Copyright (C) 2010 Creytiv.com
+ */
+
+
+struct dspbuf {
+ WAVEHDR wh;
+ struct mbuf *mb;
+};
+
+
+int winwave_src_alloc(struct ausrc_st **stp, struct ausrc *as,
+ struct media_ctx **ctx,
+ struct ausrc_prm *prm, const char *device,
+ ausrc_read_h *rh, ausrc_error_h *errh, void *arg);
+int winwave_play_alloc(struct auplay_st **stp, struct auplay *ap,
+ struct auplay_prm *prm, const char *device,
+ auplay_write_h *wh, void *arg);