summaryrefslogtreecommitdiff
path: root/modules/aubridge/aubridge.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/aubridge/aubridge.h
parente6ad5cf4401b860ba402d4b7b3c7c254bc87a019 (diff)
baresip 0.4.10
Diffstat (limited to 'modules/aubridge/aubridge.h')
-rw-r--r--modules/aubridge/aubridge.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/modules/aubridge/aubridge.h b/modules/aubridge/aubridge.h
new file mode 100644
index 0000000..76ec53f
--- /dev/null
+++ b/modules/aubridge/aubridge.h
@@ -0,0 +1,41 @@
+/**
+ * @file aubridge.h Audio bridge -- internal interface
+ *
+ * Copyright (C) 2010 Creytiv.com
+ */
+
+
+struct device;
+
+struct ausrc_st {
+ struct ausrc *as; /* inheritance */
+ struct device *dev;
+ struct ausrc_prm prm;
+ ausrc_read_h *rh;
+ void *arg;
+};
+
+struct auplay_st {
+ struct auplay *ap; /* inheritance */
+ struct device *dev;
+ struct auplay_prm prm;
+ auplay_write_h *wh;
+ void *arg;
+};
+
+
+extern struct hash *ht_device;
+
+
+int play_alloc(struct auplay_st **stp, struct auplay *ap,
+ struct auplay_prm *prm, const char *device,
+ auplay_write_h *wh, void *arg);
+int 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 device_connect(struct device **devp, const char *device,
+ struct auplay_st *auplay, struct ausrc_st *ausrc);
+void device_stop(struct device *dev);