urisourcebin: fix deadlock 50/318750/1 accepted/tizen/unified/20250124.043544 accepted/tizen/unified/x/20250124.061124
authorEunhye Choi <eunhae1.choi@samsung.com>
Thu, 23 Jan 2025 07:40:04 +0000 (16:40 +0900)
committerEunhye Choi <eunhae1.choi@samsung.com>
Thu, 23 Jan 2025 07:44:41 +0000 (16:44 +0900)
[Vesrion] 1.24.11-1
[Issue]
- deadlock is occurred during autoplugging between setting state thread
and typefind sinkpad activation thread.
- need to get parsebin state lock before adding it to urisourcebin
which is under changing state too.

Change-Id: I5a15c60f48c2db2197ae20ce971a1e3d995b0ac9

packaging/gstreamer.spec
subprojects/gst-plugins-base/gst/playback/gsturisourcebin.c
subprojects/gst-plugins-base/meson.build

index c8e99ad1a783f249d525344c10a2790dba4260f7..21adea8159ebdf8b1118b77a1d5e3825e2306aed 100644 (file)
@@ -60,7 +60,7 @@
 
 Name:           %{_name}
 Version:        1.24.11
-Release:        0
+Release:        1
 Summary:        Streaming-Media Framework Runtime
 License:        LGPL-2.0+
 Group:          Multimedia/Framework
index 189e388b19cde3fd0b6681b3e69f26c5db25a659..a1814df10ffa208496b9f7338092911a8652000b 100644 (file)
@@ -2133,6 +2133,9 @@ setup_parsebin_for_slot (ChildSrcPadInfo * info, GstPad * originating_pad)
     return FALSE;
 #endif
   }
+#ifdef TIZEN_FEATURE_URISRCBIN_FIX_DEADLOCK
+  GST_STATE_LOCK(info->demuxer);
+#endif
   gst_bin_add (GST_BIN_CAST (urisrc), info->demuxer);
 
   info->demuxer_is_parsebin = TRUE;
@@ -2161,11 +2164,18 @@ setup_parsebin_for_slot (ChildSrcPadInfo * info, GstPad * originating_pad)
     gst_element_sync_state_with_parent (info->pre_parse_queue);
   }
   gst_element_sync_state_with_parent (info->demuxer);
+#ifdef TIZEN_FEATURE_URISRCBIN_FIX_DEADLOCK
+  GST_STATE_UNLOCK(info->demuxer);
+#endif
   GST_URI_SOURCE_BIN_UNLOCK (urisrc);
   return TRUE;
 
 could_not_link:
   {
+#ifdef TIZEN_FEATURE_URISRCBIN_FIX_DEADLOCK
+    if (info->demuxer)
+      GST_STATE_UNLOCK(info->demuxer);
+#endif
     GST_URI_SOURCE_BIN_UNLOCK (urisrc);
     GST_ELEMENT_ERROR (urisrc, CORE, NEGOTIATION,
         (NULL), ("Can't link to (pre-)parsebin element"));
index 325d085c36e09740e5aef22ca6597076e46e495f..a454537fd5c963b6c0bf444fef2a2929e4fa11db 100644 (file)
@@ -408,6 +408,7 @@ core_conf.set('TIZEN_FEATURE_DISABLE_EOS_DROP', true)
 core_conf.set('TIZEN_FEATURE_MANUAL_BUFFERING_CTRL', true)
 core_conf.set('TIZEN_FEATURE_FIX_PAD_BLOCK', true)
 core_conf.set('TIZEN_FEATURE_BUG_FIX', true)
+core_conf.set('TIZEN_FEATURE_URISRCBIN_FIX_DEADLOCK', true)
 
 tbm_dep = dependency('libtbm', required : get_option('tbm'))
 if tbm_dep.found()