From ff7b41ac861f9fbbf603709714754b74bb684fe7 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Fri, 26 Apr 2024 09:45:22 +0800 Subject: [PATCH] soup: fix thread name thread names should be below 16char, otherwise they won't be shown on linux. Part-of: --- subprojects/gst-plugins-good/ext/soup/gstsouphttpsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-good/ext/soup/gstsouphttpsrc.c b/subprojects/gst-plugins-good/ext/soup/gstsouphttpsrc.c index 6ead6da49f..32d2e2039b 100644 --- a/subprojects/gst-plugins-good/ext/soup/gstsouphttpsrc.c +++ b/subprojects/gst-plugins-good/ext/soup/gstsouphttpsrc.c @@ -1202,7 +1202,7 @@ gst_soup_http_src_session_open (GstSoupHTTPSrc * src) /* now owned by the loop */ g_main_context_unref (ctx); - src->session->thread = g_thread_try_new ("souphttpsrc-thread", + src->session->thread = g_thread_try_new ("souphttpsrc", thread_func, src, NULL); if (!src->session->thread) {