summaryrefslogtreecommitdiff
path: root/rakia/media-stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'rakia/media-stream.h')
-rw-r--r--rakia/media-stream.h92
1 files changed, 92 insertions, 0 deletions
diff --git a/rakia/media-stream.h b/rakia/media-stream.h
new file mode 100644
index 0000000..0e09a42
--- /dev/null
+++ b/rakia/media-stream.h
@@ -0,0 +1,92 @@
+/*
+ * sip-media-stream.h - Header for RakiaMediaStream
+ * Copyright (C) 2005 Collabora Ltd.
+ * Copyright (C) 2005-2010 Nokia Corporation
+ *
+ * This work 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 work 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 work; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __TPSIP_MEDIA_STREAM_H__
+#define __TPSIP_MEDIA_STREAM_H__
+
+#include <glib-object.h>
+#include <telepathy-glib/dbus-properties-mixin.h>
+#include <telepathy-glib/enums.h>
+#include <sofia-sip/sdp.h>
+
+G_BEGIN_DECLS
+
+typedef struct _RakiaMediaStream RakiaMediaStream;
+typedef struct _RakiaMediaStreamClass RakiaMediaStreamClass;
+
+struct _RakiaMediaStreamClass {
+ GObjectClass parent_class;
+ TpDBusPropertiesMixinClass dbus_props_class;
+};
+
+struct _RakiaMediaStream {
+ GObject parent;
+};
+
+GType rakia_media_stream_get_type(void);
+
+/* TYPE MACROS */
+#define TPSIP_TYPE_MEDIA_STREAM \
+ (rakia_media_stream_get_type())
+#define TPSIP_MEDIA_STREAM(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), TPSIP_TYPE_MEDIA_STREAM, RakiaMediaStream))
+#define TPSIP_MEDIA_STREAM_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), TPSIP_TYPE_MEDIA_STREAM, RakiaMediaStreamClass))
+#define TPSIP_IS_MEDIA_STREAM(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), TPSIP_TYPE_MEDIA_STREAM))
+#define TPSIP_IS_MEDIA_STREAM_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), TPSIP_TYPE_MEDIA_STREAM))
+#define TPSIP_MEDIA_STREAM_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TPSIP_TYPE_MEDIA_STREAM, RakiaMediaStreamClass))
+
+/***********************************************************************
+ * Additional declarations (not based on generated templates)
+ ***********************************************************************/
+
+void rakia_media_stream_close (RakiaMediaStream *self);
+guint rakia_media_stream_get_id (RakiaMediaStream *self);
+guint rakia_media_stream_get_media_type (RakiaMediaStream *self);
+const char *rakia_media_stream_local_sdp (RakiaMediaStream *self);
+gboolean rakia_media_stream_set_remote_media (RakiaMediaStream *self,
+ const sdp_media_t *media,
+ guint direction_up_mask,
+ guint pending_send_mask);
+void rakia_media_stream_set_playing (RakiaMediaStream *self, gboolean playing);
+void rakia_media_stream_set_sending (RakiaMediaStream *self, gboolean sending);
+void rakia_media_stream_set_direction (RakiaMediaStream *stream,
+ TpMediaStreamDirection direction,
+ guint pending_send_mask);
+void rakia_media_stream_apply_pending_direction (RakiaMediaStream *stream,
+ guint pending_send_mask);
+TpMediaStreamDirection rakia_media_stream_get_requested_direction (RakiaMediaStream *self);
+gboolean rakia_media_stream_is_local_ready (RakiaMediaStream *self);
+gboolean rakia_media_stream_is_codec_intersect_pending (RakiaMediaStream *self);
+void rakia_media_stream_start_telephony_event (RakiaMediaStream *self, guchar event);
+void rakia_media_stream_stop_telephony_event (RakiaMediaStream *self);
+gboolean rakia_media_stream_request_hold_state (RakiaMediaStream *self,
+ gboolean hold);
+
+guint rakia_tp_media_type (sdp_media_e sip_mtype);
+TpMediaStreamDirection rakia_media_stream_direction_from_remote_media (
+ const sdp_media_t *media);
+
+G_END_DECLS
+
+#endif /* #ifndef __TPSIP_MEDIA_STREAM_H__*/