From 2707a84d7816dd5e180980586e7315a295ab074d Mon Sep 17 00:00:00 2001 From: Olivier Crete Date: Tue, 5 Aug 2008 08:58:27 +0000 Subject: [PATCH] gst/rtpmanager/gstrtpbin.c: Release lock before emitting the request-pt-map signal. Original commit message from CVS: Patch by: Olivier Crete * gst/rtpmanager/gstrtpbin.c: (get_pt_map): Release lock before emitting the request-pt-map signal. Fixes #543480. --- gst/rtpmanager/gstrtpbin.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c index 44b2235e15..f3e9537067 100644 --- a/gst/rtpmanager/gstrtpbin.c +++ b/gst/rtpmanager/gstrtpbin.c @@ -618,11 +618,24 @@ get_pt_map (GstRtpBinSession * session, guint pt) g_value_init (&ret, GST_TYPE_CAPS); g_value_set_boxed (&ret, NULL); + GST_RTP_SESSION_UNLOCK (session); + g_signal_emitv (args, gst_rtp_bin_signals[SIGNAL_REQUEST_PT_MAP], 0, &ret); + GST_RTP_SESSION_LOCK (session); + g_value_unset (&args[0]); g_value_unset (&args[1]); g_value_unset (&args[2]); + + /* look in the cache again because we let the lock go */ + caps = g_hash_table_lookup (session->ptmap, GINT_TO_POINTER (pt)); + if (caps) { + gst_caps_ref (caps); + g_value_unset (&ret); + goto done; + } + caps = (GstCaps *) g_value_dup_boxed (&ret); g_value_unset (&ret); if (!caps) -- 2.34.1