From e79ff5a4f14574c1d026f92e608cdf2fb5d3a2fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Thu, 3 Oct 2024 22:22:17 +0200 Subject: [PATCH] vkencoder-private: use gst_clear_object() Instead of g_clear_object() for sake of coherence. Part-of: --- .../gst-plugins-bad/gst-libs/gst/vulkan/gstvkencoder-private.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/vulkan/gstvkencoder-private.c b/subprojects/gst-plugins-bad/gst-libs/gst/vulkan/gstvkencoder-private.c index 4986e60665..585a318202 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/vulkan/gstvkencoder-private.c +++ b/subprojects/gst-plugins-bad/gst-libs/gst/vulkan/gstvkencoder-private.c @@ -1031,7 +1031,7 @@ gst_vulkan_encoder_create_dpb_pool (GstVulkanEncoder * self, GstCaps * caps) return TRUE; bail: - g_clear_object (&priv->dpb_pool); + gst_clear_object (&priv->dpb_pool); return FALSE; }