aboutsummaryrefslogtreecommitdiffstats
path: root/package/libtapi/src/tapi-device.h
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2011-02-07 21:47:54 +0000
committerJohn Crispin <john@openwrt.org>2011-02-07 21:47:54 +0000
commite651a9341a241ef5cefc1711d42e3f638aaba9b8 (patch)
tree6597330d9c4e70a48df28970d1b882986961e618 /package/libtapi/src/tapi-device.h
parent0cd254bdee1f2575502e0c4c71e1ca2b7dfc5259 (diff)
downloadupstream-e651a9341a241ef5cefc1711d42e3f638aaba9b8.tar.gz
upstream-e651a9341a241ef5cefc1711d42e3f638aaba9b8.tar.bz2
upstream-e651a9341a241ef5cefc1711d42e3f638aaba9b8.zip
* drop libtapi and tapi_sip (moved to external git) * add build variants to pjsip * split tapi_dev audio driver out of patch into src/
SVN-Revision: 25412
Diffstat (limited to 'package/libtapi/src/tapi-device.h')
-rw-r--r--package/libtapi/src/tapi-device.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/package/libtapi/src/tapi-device.h b/package/libtapi/src/tapi-device.h
deleted file mode 100644
index 27658b9d83..0000000000
--- a/package/libtapi/src/tapi-device.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __TAPI_DEVICE_H__
-#define __TAPI_DEVICE_H__
-
-struct tapi_device {
- int control_fd;
- int stream_fd;
- struct tapi_port *ports;
- char stream_path[100];
-
- unsigned int id;
-
- unsigned int num_ports;
-};
-
-struct tapi_endpoint;
-
-int tapi_device_open(unsigned int id, struct tapi_device *dev);
-
-int tapi_link_alloc(struct tapi_device *dev, unsigned int ep1, unsigned int ep2);
-int tapi_link_free(struct tapi_device *dev, unsigned int link);
-int tapi_link_enable(struct tapi_device *dev, unsigned int link);
-int tapi_link_disable(struct tapi_device *dev, unsigned int link);
-int tapi_sync(struct tapi_device *dev);
-
-#endif