diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-03-04 01:34:47 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-03-04 01:34:47 +0800 |
commit | 4ff75557b6f1a3425aec570f546fd5620cad1424 (patch) | |
tree | f2e77229e9b6fe8f0eae5a2a6fa2217d1015b783 | |
parent | c6546b498b5c4528aa182651243f20b40e6ad2e7 (diff) | |
download | gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.tar gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.tar.gz gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.tar.bz2 gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.tar.lz gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.tar.xz gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.tar.zst gsoc2013-empathy-4ff75557b6f1a3425aec570f546fd5620cad1424.zip |
Let the UI call the handler for bus messages
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2563
-rw-r--r-- | libempathy/empathy-call-handler.c | 40 | ||||
-rw-r--r-- | libempathy/empathy-call-handler.h | 5 |
2 files changed, 8 insertions, 37 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c index 41cef6707..59afe3f99 100644 --- a/libempathy/empathy-call-handler.c +++ b/libempathy/empathy-call-handler.c @@ -58,7 +58,6 @@ typedef struct { EmpathyTpCall *call; EmpathyContact *contact; TfChannel *tfchannel; - GstBus *bus; } EmpathyCallHandlerPriv; #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyCallHandler) @@ -127,9 +126,6 @@ empathy_call_handler_set_property (GObject *object, case PROP_TP_CALL: priv->call = g_value_dup_object (value); break; - case PROP_GST_BUS: - priv->bus = g_value_dup_object (value); - break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } @@ -149,9 +145,6 @@ empathy_call_handler_get_property (GObject *object, case PROP_TP_CALL: g_value_set_object (value, priv->call); break; - case PROP_GST_BUS: - g_value_set_object (value, priv->bus); - break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } @@ -177,12 +170,6 @@ empathy_call_handler_class_init (EmpathyCallHandlerClass *klass) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); g_object_class_install_property (object_class, PROP_CONTACT, param_spec); - param_spec = g_param_spec_object ("gst-bus", - "gst-bus", "The gstreamer bus", - GST_TYPE_BUS, - G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); - g_object_class_install_property (object_class, PROP_GST_BUS, param_spec); - param_spec = g_param_spec_object ("tp-call", "tp-call", "The calls channel wrapper", EMPATHY_TYPE_TP_CALL, @@ -232,18 +219,16 @@ empathy_call_handler_new_for_channel (EmpathyTpCall *call) "tp-call", call, NULL)); } -static gboolean -empathy_call_handler_pipeline_bus_watch (GstBus *bus, GstMessage *message, - gpointer user_data) +void +empathy_call_handler_bus_message (EmpathyCallHandler *handler, + GstBus *bus, GstMessage *message) { - EmpathyCallHandler *handler = EMPATHY_CALL_HANDLER (user_data); EmpathyCallHandlerPriv *priv = GET_PRIV (handler); - g_assert (priv->tfchannel != NULL); + if (priv->tfchannel == NULL) + return; tf_channel_bus_message (priv->tfchannel, message); - - return TRUE; } static void @@ -251,10 +236,6 @@ empathy_call_handler_tf_channel_session_created_cb (TfChannel *tfchannel, FsConference *conference, FsParticipant *participant, EmpathyCallHandler *self) { - EmpathyCallHandlerPriv *priv = GET_PRIV (self); - - gst_bus_add_watch (priv->bus, empathy_call_handler_pipeline_bus_watch, self); - g_signal_emit (G_OBJECT (self), signals[CONFERENCE_ADDED], 0, GST_ELEMENT (conference)); } @@ -416,14 +397,3 @@ empathy_call_handler_start_call (EmpathyCallHandler *handler) empathy_tp_call_accept_incoming_call (priv->call); } } - -void -empathy_call_handler_set_bus (EmpathyCallHandler *handler, GstBus *bus) -{ - EmpathyCallHandlerPriv *priv = GET_PRIV (handler); - - g_assert (priv->bus == NULL); - - priv->bus = g_object_ref (bus); -} - diff --git a/libempathy/empathy-call-handler.h b/libempathy/empathy-call-handler.h index 4bea0037c..db2396dc7 100644 --- a/libempathy/empathy-call-handler.h +++ b/libempathy/empathy-call-handler.h @@ -68,8 +68,9 @@ EmpathyCallHandler * empathy_call_handler_new_for_channel ( EmpathyTpCall *call); void empathy_call_handler_start_call (EmpathyCallHandler *handler); -void empathy_call_handler_set_bus (EmpathyCallHandler *handler, - GstBus *bus); + +void empathy_call_handler_bus_message (EmpathyCallHandler *handler, + GstBus *bus, GstMessage *message); G_END_DECLS |