summaryrefslogtreecommitdiff
path: root/farstream/fs-participant.c
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2011-10-11 16:08:49 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2011-10-11 16:14:10 -0400
commit52a59229d200a8d74d66e02126c290434d3157d8 (patch)
tree1adf3344ad47dbed6c35c42511362b232c703683 /farstream/fs-participant.c
parent7098f40db04b6a32c311b802a2c12f0f450ee7b7 (diff)
downloadfarstream-52a59229d200a8d74d66e02126c290434d3157d8.tar.gz
Move the lib out of gst-libs
Diffstat (limited to 'farstream/fs-participant.c')
-rw-r--r--farstream/fs-participant.c98
1 files changed, 98 insertions, 0 deletions
diff --git a/farstream/fs-participant.c b/farstream/fs-participant.c
new file mode 100644
index 00000000..d8aaf334
--- /dev/null
+++ b/farstream/fs-participant.c
@@ -0,0 +1,98 @@
+/*
+ * Farstream - Farstream Participant
+ *
+ * Copyright 2007 Collabora Ltd.
+ * @author: Philippe Kalaf <philippe.kalaf@collabora.co.uk>
+ * Copyright 2007 Nokia Corp.
+ *
+ * fs-participant.c - A Farstream Participant gobject (base implementation)
+ *
+ * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+/**
+ * SECTION:fs-participant
+ * @short_description: A participant in a conference
+ *
+ * This object is the base implementation of a Farstream Participant. It needs to be
+ * derived and implemented by a farstream conference gstreamer element. A
+ * participant represents any source of media in a conference. This could be a
+ * human-participant or an automaton.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "fs-participant.h"
+#include "fs-enumtypes.h"
+#include "fs-marshal.h"
+
+/* Signals */
+enum
+{
+ LAST_SIGNAL
+};
+
+/* props */
+enum
+{
+ PROP_0
+};
+
+/*
+struct _FsParticipantPrivate
+{
+};
+*/
+
+G_DEFINE_ABSTRACT_TYPE(FsParticipant, fs_participant, GST_TYPE_OBJECT);
+
+#define FS_PARTICIPANT_GET_PRIVATE(o) \
+ (G_TYPE_INSTANCE_GET_PRIVATE ((o), FS_TYPE_PARTICIPANT, \
+ FsParticipantPrivate))
+
+static void fs_participant_finalize (GObject *object);
+
+
+// static guint signals[LAST_SIGNAL] = { 0 };
+
+static void
+fs_participant_class_init (FsParticipantClass *klass)
+{
+ GObjectClass *gobject_class;
+
+ gobject_class = (GObjectClass *) klass;
+
+ gobject_class->finalize = fs_participant_finalize;
+
+ // g_type_class_add_private (klass, sizeof (FsParticipantPrivate));
+}
+
+static void
+fs_participant_init (FsParticipant *self)
+{
+ //self->priv = FS_PARTICIPANT_GET_PRIVATE (self);
+ self->mutex = g_mutex_new ();
+}
+
+static void
+fs_participant_finalize (GObject *object)
+{
+ FsParticipant *self = FS_PARTICIPANT (object);
+ g_mutex_free (self->mutex);
+
+ G_OBJECT_CLASS (fs_participant_parent_class)->finalize (object);
+}