diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-03-04 01:34:07 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-03-04 01:34:07 +0800 |
commit | 5059be4c25b318924b1f30324bab2cf66c66d407 (patch) | |
tree | 194c9d6fe77b3909b9d48ef90161924f12cd854c /src | |
parent | 74974f48ea36df853098259d25727317b1048ffd (diff) | |
download | gsoc2013-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
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 2 |
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) |