diff --git a/sources/generated/Gst/Caps.cs b/sources/generated/Gst/Caps.cs
index 53bd72b74a..1a7d97aaf6 100644
--- a/sources/generated/Gst/Caps.cs
+++ b/sources/generated/Gst/Caps.cs
@@ -391,20 +391,11 @@ namespace Gst {
public Caps(IntPtr raw) : base(raw) {}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
- static extern IntPtr gst_caps_new_any();
+ static extern IntPtr gst_caps_new_empty();
public Caps ()
{
- Raw = gst_caps_new_any();
- }
-
- [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
- static extern IntPtr gst_caps_new_empty();
-
- public static Caps NewEmpty()
- {
- Caps result = new Caps (gst_caps_new_empty());
- return result;
+ Raw = gst_caps_new_empty();
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
@@ -417,6 +408,15 @@ namespace Gst {
GLib.Marshaller.Free (native_media_type);
}
+ [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ static extern IntPtr gst_caps_new_any();
+
+ public static Caps NewAny()
+ {
+ Caps result = new Caps (gst_caps_new_any());
+ return result;
+ }
+
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _abi_info = null;
diff --git a/sources/generated/gstreamer-sharp-api.xml b/sources/generated/gstreamer-sharp-api.xml
index 4516332092..03d4716758 100644
--- a/sources/generated/gstreamer-sharp-api.xml
+++ b/sources/generated/gstreamer-sharp-api.xml
@@ -6618,7 +6618,6 @@
missing glib:type-name
-
@@ -6912,6 +6911,7 @@
+
diff --git a/sources/gstreamer-sharp.metadata b/sources/gstreamer-sharp.metadata
index ab376ad283..59fb012d06 100644
--- a/sources/gstreamer-sharp.metadata
+++ b/sources/gstreamer-sharp.metadata
@@ -48,6 +48,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
true -->
guint8*
+
+
+
+
+
+