summaryrefslogtreecommitdiff
path: root/rakia/call-stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'rakia/call-stream.h')
-rw-r--r--rakia/call-stream.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/rakia/call-stream.h b/rakia/call-stream.h
new file mode 100644
index 0000000..ccc15ab
--- /dev/null
+++ b/rakia/call-stream.h
@@ -0,0 +1,76 @@
+/*
+ * call-stream.h - Header for RakiaCallStream
+ * Copyright (C) 2011 Collabora Ltd.
+ * @author Olivier Crete <olivier.crete@collabora.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __RAKIA_CALL_STREAM_H__
+#define __RAKIA_CALL_STREAM_H__
+
+#include <glib-object.h>
+
+#include <telepathy-glib/base-media-call-stream.h>
+
+#include "rakia/call-content.h"
+#include "rakia/sip-media.h"
+
+G_BEGIN_DECLS
+
+typedef struct _RakiaCallStream RakiaCallStream;
+typedef struct _RakiaCallStreamPrivate RakiaCallStreamPrivate;
+typedef struct _RakiaCallStreamClass RakiaCallStreamClass;
+
+struct _RakiaCallStreamClass {
+ TpBaseMediaCallStreamClass parent_class;
+};
+
+struct _RakiaCallStream {
+ TpBaseMediaCallStream parent;
+
+ RakiaCallStreamPrivate *priv;
+};
+
+GType rakia_call_stream_get_type (void);
+
+/* TYPE MACROS */
+#define RAKIA_TYPE_CALL_STREAM \
+ (rakia_call_stream_get_type ())
+#define RAKIA_CALL_STREAM(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), RAKIA_TYPE_CALL_STREAM, RakiaCallStream))
+#define RAKIA_CALL_STREAM_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), RAKIA_TYPE_CALL_STREAM, \
+ RakiaCallStreamClass))
+#define RAKIA_IS_CALL_STREAM(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), RAKIA_TYPE_CALL_STREAM))
+#define RAKIA_IS_CALL_STREAM_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), RAKIA_TYPE_CALL_STREAM))
+#define RAKIA_CALL_STREAM_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), RAKIA_TYPE_CALL_STREAM, \
+ RakiaCallStreamClass))
+
+RakiaCallStream * rakia_call_stream_new (
+ RakiaCallContent *content,
+ RakiaSipMedia *media,
+ const gchar *object_path,
+ TpStreamTransportType transport,
+ TpBaseConnection *connection);
+
+void rakia_call_stream_update_direction (RakiaCallStream *self);
+
+G_END_DECLS
+
+#endif /* #ifndef __RAKIA_CALL_STREAM_H__*/