summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatricia Muscalu <patricia@axis.com>2016-04-06 10:09:46 +0200
committerTim-Philipp Müller <tim@centricular.com>2016-04-06 09:46:34 +0100
commitf0891e2cdf32489d9a3393188e4782d9f8f91d09 (patch)
treed7ab97eb52662a50bc2d81cd92a3b88c5595144b
parentbfe08411a994030ff0876af94f8155911d420fe4 (diff)
rtsp-thread-pool: explained why GSource is a part of ThreadImpl
Clarified why it is necessary to add source information to GstRTSPThreadImpl. See the reported bug in GLib: https://bugzilla.gnome.org/show_bug.cgi?id=720186 for more information. https://bugzilla.gnome.org/show_bug.cgi?id=761702
-rw-r--r--gst/rtsp-server/rtsp-thread-pool.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/rtsp-server/rtsp-thread-pool.c b/gst/rtsp-server/rtsp-thread-pool.c
index b9ee37b..6c12ac8 100644
--- a/gst/rtsp-server/rtsp-thread-pool.c
+++ b/gst/rtsp-server/rtsp-thread-pool.c
@@ -57,6 +57,8 @@ typedef struct _GstRTSPThreadImpl
gint reused;
GSource *source;
+ /* FIXME, the source has to be part of GstRTSPThreadImpl, due to a bug in GLib:
+ * https://bugzilla.gnome.org/show_bug.cgi?id=720186 */
} GstRTSPThreadImpl;
GST_DEFINE_MINI_OBJECT_TYPE (GstRTSPThread, gst_rtsp_thread);