From 798ee29b980def52c0ce45f77748794c29483cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 12 Feb 2024 16:10:24 +0200 Subject: [PATCH] structure: Call `_full()` serialize function for `GST_SERIALIZE_FLAG_STRICT` Part-of: --- gstreamer/src/structure.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gstreamer/src/structure.rs b/gstreamer/src/structure.rs index b81c045b0..557eb9b1b 100644 --- a/gstreamer/src/structure.rs +++ b/gstreamer/src/structure.rs @@ -747,12 +747,13 @@ impl StructureRef { #[cfg(feature = "v1_24")] #[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))] #[doc(alias = "gst_structure_serialize")] + #[doc(alias = "gst_structure_serialize_full")] pub fn serialize_strict( &self, flags: crate::SerializeFlags, ) -> Result { unsafe { - let res = ffi::gst_structure_serialize( + let res = ffi::gst_structure_serialize_full( &self.0, flags.into_glib() | ffi::GST_SERIALIZE_FLAG_STRICT, );