aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-03-04 01:34:07 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-03-04 01:34:07 +0800
commit5059be4c25b318924b1f30324bab2cf66c66d407 (patch)
tree194c9d6fe77b3909b9d48ef90161924f12cd854c
parent74974f48ea36df853098259d25727317b1048ffd (diff)
downloadgsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.tar
gsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.tar.gz
gsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.tar.bz2
gsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.tar.lz
gsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.tar.xz
gsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.tar.zst
gsoc2013-empathy-5059be4c25b318924b1f30324bab2cf66c66d407.zip
Add comments for callbacks that come from a different thread
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2551
-rw-r--r--src/empathy-call-window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index a565be90a..1b86f6f6a 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -550,6 +550,7 @@ empathy_call_window_channel_closed_cb (TfChannel *channel, gpointer user_data)
gtk_widget_set_sensitive (priv->camera_button, FALSE);
}
+/* Called from the streaming thread */
static void
empathy_call_window_src_added_cb (EmpathyCallHandler *handler,
GstPad *src, guint media_type, gpointer user_data)
@@ -603,6 +604,7 @@ empathy_call_window_src_added_cb (EmpathyCallHandler *handler,
gst_object_unref (pad);
}
+/* Called from the streaming thread */
static void
empathy_call_window_sink_added_cb (EmpathyCallHandler *handler,
GstPad *sink, guint media_type, gpointer user_data)