aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-06-24 21:47:33 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-06-29 17:34:37 +0800
commit53fa331b0f2ad50a8520c4adf6983b744d5cddbd (patch)
treec17fac9f622402a7d0022a6a060a08aea5d0004f
parent01e72ff82e7516cf71bdab66e107b8a3df3f1749 (diff)
downloadgsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.tar
gsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.tar.gz
gsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.tar.bz2
gsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.tar.lz
gsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.tar.xz
gsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.tar.zst
gsoc2013-empathy-53fa331b0f2ad50a8520c4adf6983b744d5cddbd.zip
Add empathy-av, a new process handling media channels (#599161)
-rw-r--r--src/.gitignore3
-rw-r--r--src/Makefile.am14
-rw-r--r--src/empathy-av.c111
3 files changed, 122 insertions, 6 deletions
diff --git a/src/.gitignore b/src/.gitignore
index cf52a9c68..3513a05c3 100644
--- a/src/.gitignore
+++ b/src/.gitignore
@@ -1,5 +1,4 @@
empathy
empathy-accounts
-empathy-chat-chandler
-empathy-call-chandler
empathy-debugger
+empathy-av
diff --git a/src/Makefile.am b/src/Makefile.am
index ac6f20713..7ef698ec2 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -79,6 +79,7 @@ bin_PROGRAMS = \
empathy \
empathy-accounts \
empathy-debugger \
+ empathy-av \
$(NULL)
BUILT_SOURCES=
@@ -97,10 +98,15 @@ empathy_debugger_SOURCES = \
empathy-debugger.c \
$(NULL)
+empathy_av_SOURCES = \
+ empathy-av.c \
+ empathy-call-window-fullscreen.c empathy-call-window-fullscreen.h \
+ empathy-call-window.c empathy-call-window.h \
+ empathy-sidebar.c empathy-sidebar.h \
+ $(NULL)
+
empathy_handwritten_source = \
empathy-about-dialog.c empathy-about-dialog.h \
- empathy-call-window-fullscreen.c empathy-call-window-fullscreen.h \
- empathy-call-window.c empathy-call-window.h \
empathy-chat-window.c empathy-chat-window.h \
empathy-chatrooms-window.c empathy-chatrooms-window.h \
empathy-event-manager.c empathy-event-manager.h \
@@ -110,7 +116,6 @@ empathy_handwritten_source = \
empathy-migrate-butterfly-logs.c empathy-migrate-butterfly-logs.h \
empathy-new-chatroom-dialog.c empathy-new-chatroom-dialog.h \
empathy-preferences.c empathy-preferences.h \
- empathy-sidebar.c empathy-sidebar.h \
empathy-status-icon.c empathy-status-icon.h \
empathy-chat-manager.c empathy-chat-manager.h \
empathy.c
@@ -134,7 +139,8 @@ nodist_empathy_SOURCES = $(BUILT_SOURCES)
check_c_sources = \
$(empathy_handwritten_source) \
- $(empathy_logs_SOURCES)
+ $(empathy_logs_SOURCES) \
+ $(empathy_av_SOURCES)
include $(top_srcdir)/tools/check-coding-style.mk
check-local: check-coding-style
diff --git a/src/empathy-av.c b/src/empathy-av.c
new file mode 100644
index 000000000..b83d3525c
--- /dev/null
+++ b/src/empathy-av.c
@@ -0,0 +1,111 @@
+/*
+ * Copyright (C) 2007-2010 Collabora Ltd.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ *
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
+ * Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+ */
+
+#include <config.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include <telepathy-glib/debug-sender.h>
+
+#include <libempathy/empathy-call-factory.h>
+#include <libempathy-gtk/empathy-ui-utils.h>
+
+#include "empathy-call-window.h"
+
+#define DEBUG_FLAG EMPATHY_DEBUG_VOIP
+#include <libempathy/empathy-debug.h>
+
+#include <gst/gst.h>
+
+static void
+new_call_handler_cb (EmpathyCallFactory *factory,
+ EmpathyCallHandler *handler,
+ gboolean outgoing,
+ gpointer user_data)
+{
+ EmpathyCallWindow *window;
+
+ window = empathy_call_window_new (handler);
+ gtk_widget_show (GTK_WIDGET (window));
+}
+
+int
+main (int argc,
+ char *argv[])
+{
+ GOptionContext *optcontext;
+ GOptionEntry options[] = {
+ { NULL }
+ };
+#ifdef ENABLE_DEBUG
+ TpDebugSender *debug_sender;
+#endif
+ EmpathyCallFactory *call_factory;
+
+ /* Init */
+ g_thread_init (NULL);
+
+ optcontext = g_option_context_new (N_("- Empathy Audio/Video Client"));
+ g_option_context_add_group (optcontext, gst_init_get_option_group ());
+ g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
+ g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
+
+ if (!g_option_context_parse (optcontext, &argc, &argv, &error)) {
+ g_print ("%s\nRun '%s --help' to see a full list of available command "
+ "line options.\n",
+ error->message, argv[0]);
+ g_warning ("Error in empathy-av init: %s", error->message);
+ return EXIT_FAILURE;
+ }
+
+ g_option_context_free (optcontext);
+
+ empathy_gtk_init ();
+ g_set_application_name (_("Empathy Audio/Video Client"));
+ g_setenv ("PULSE_PROP_media.role", "phone", TRUE);
+
+ gtk_window_set_default_icon_name ("empathy");
+ textdomain (GETTEXT_PACKAGE);
+
+#ifdef ENABLE_DEBUG
+ /* Set up debug sender */
+ debug_sender = tp_debug_sender_dup ();
+ g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
+#endif
+
+ call_factory = empathy_call_factory_initialise ();
+
+ g_signal_connect (G_OBJECT (call_factory), "new-call-handler",
+ G_CALLBACK (new_call_handler_cb), NULL);
+
+ gtk_main ();
+
+ g_object_unref (call_factory);
+
+#ifdef ENABLE_DEBUG
+ g_object_unref (debug_sender);
+#endif
+
+ return EXIT_SUCCESS;
+}