From e8038d29945df8188d39da36ade4ff8e08220a03 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 27 Mar 2025 15:38:42 +0100 Subject: [PATCH] codecalpha: name both queues Make it easier to debug from logs. Part-of: --- .../gst-plugins-bad/gst/codecalpha/gstalphadecodebin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst/codecalpha/gstalphadecodebin.c b/subprojects/gst-plugins-bad/gst/codecalpha/gstalphadecodebin.c index fdd6eead97..040fa9e538 100644 --- a/subprojects/gst-plugins-bad/gst/codecalpha/gstalphadecodebin.c +++ b/subprojects/gst-plugins-bad/gst/codecalpha/gstalphadecodebin.c @@ -119,8 +119,8 @@ gst_alpha_decode_bin_constructed (GObject * obj) goto cleanup; } - queue = gst_element_factory_make ("queue", NULL); - alpha_queue = gst_element_factory_make ("queue", NULL); + queue = gst_element_factory_make ("queue", "main-queue"); + alpha_queue = gst_element_factory_make ("queue", "alpha-queue"); if (!queue || !alpha_queue) { priv->missing_element = "queue"; goto cleanup;