summaryrefslogtreecommitdiff
path: root/telepathy-glib/call-content-media-description.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-11-24 16:45:07 +0100
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-01-10 09:52:44 +0100
commitc2c1608cf89393cb79d3c88b6427a8c1186931cb (patch)
tree89aae5c5b63efdacc7e2c79822c99039a2bdfb75 /telepathy-glib/call-content-media-description.h
parent72b1b1cca4a9efb0c8b88c079d5ebd704d975f48 (diff)
downloadtelepathy-glib-c2c1608cf89393cb79d3c88b6427a8c1186931cb.tar.gz
Add TpBaseMediaCallContent and TpCallContentMediaDescription objects
Diffstat (limited to 'telepathy-glib/call-content-media-description.h')
-rw-r--r--telepathy-glib/call-content-media-description.h103
1 files changed, 103 insertions, 0 deletions
diff --git a/telepathy-glib/call-content-media-description.h b/telepathy-glib/call-content-media-description.h
new file mode 100644
index 000000000..6d6af6cc3
--- /dev/null
+++ b/telepathy-glib/call-content-media-description.h
@@ -0,0 +1,103 @@
+/*
+ * call-content-media-description.h - Header for TpyCallContentMediaDescription
+ * Copyright (C) 2009-2011 Collabora Ltd.
+ * @author Sjoerd Simons <sjoerd.simons@collabora.com>
+ * @author Olivier Crete <olivier.crete@collabora.com>
+ * @author Xavier Claessens <xavier.claessens@collabora.co.uk>
+ *
+ * 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 __TP_CALL_CONTENT_MEDIA_DESCRIPTION_H__
+#define __TP_CALL_CONTENT_MEDIA_DESCRIPTION_H__
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+#include <telepathy-glib/dbus.h>
+#include <telepathy-glib/dbus-properties-mixin.h>
+#include <telepathy-glib/handle.h>
+
+G_BEGIN_DECLS
+
+typedef struct _TpCallContentMediaDescription TpCallContentMediaDescription;
+typedef struct _TpCallContentMediaDescriptionPrivate
+ TpCallContentMediaDescriptionPrivate;
+typedef struct _TpCallContentMediaDescriptionClass
+ TpCallContentMediaDescriptionClass;
+
+struct _TpCallContentMediaDescriptionClass {
+ /*<private>*/
+ GObjectClass parent_class;
+
+ TpDBusPropertiesMixinClass dbus_props_class;
+ gpointer future[4];
+};
+
+struct _TpCallContentMediaDescription {
+ /*<private>*/
+ GObject parent;
+
+ TpCallContentMediaDescriptionPrivate *priv;
+};
+
+GType tp_call_content_media_description_get_type (void);
+
+/* TYPE MACROS */
+#define TP_TYPE_CALL_CONTENT_MEDIA_DESCRIPTION \
+ (tp_call_content_media_description_get_type ())
+#define TP_CALL_CONTENT_MEDIA_DESCRIPTION(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ TP_TYPE_CALL_CONTENT_MEDIA_DESCRIPTION, TpCallContentMediaDescription))
+#define TP_CALL_CONTENT_MEDIA_DESCRIPTION_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), \
+ TP_TYPE_CALL_CONTENT_MEDIA_DESCRIPTION, TpCallContentMediaDescriptionClass))
+#define TP_IS_CALL_CONTENT_MEDIA_DESCRIPTION(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_CALL_CONTENT_MEDIA_DESCRIPTION))
+#define TP_IS_CALL_CONTENT_MEDIA_DESCRIPTION_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_CALL_CONTENT_MEDIA_DESCRIPTION))
+#define TP_CALL_CONTENT_MEDIA_DESCRIPTION_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CALL_CONTENT_MEDIA_DESCRIPTION, \
+ TpCallContentMediaDescriptionClass))
+
+TpCallContentMediaDescription *tp_call_content_media_description_new (
+ TpDBusDaemon *dbus_daemon,
+ const gchar *object_path,
+ TpHandle remote_contact,
+ gboolean has_remote_information,
+ gboolean further_negotiation_required);
+
+const gchar *tp_call_content_media_description_get_object_path (
+ TpCallContentMediaDescription *self);
+TpHandle tp_call_content_media_description_get_remote_contact (
+ TpCallContentMediaDescription *self);
+
+void tp_call_content_media_description_add_ssrc (
+ TpCallContentMediaDescription *self,
+ TpHandle contact,
+ guint ssrc);
+
+void tp_call_content_media_description_append_codec (
+ TpCallContentMediaDescription *self,
+ guint identifier,
+ const gchar *name,
+ guint clock_rate,
+ guint channels,
+ gboolean updated,
+ GHashTable *parameters);
+
+G_END_DECLS
+
+#endif /* #ifndef __TP_CALL_CONTENT_MEDIA_DESCRIPTION_H__*/