summaryrefslogtreecommitdiff
path: root/sources/generated/Gst/Event.cs
diff options
context:
space:
mode:
Diffstat (limited to 'sources/generated/Gst/Event.cs')
-rw-r--r--sources/generated/Gst/Event.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/sources/generated/Gst/Event.cs b/sources/generated/Gst/Event.cs
index dad280d..104e29f 100644
--- a/sources/generated/Gst/Event.cs
+++ b/sources/generated/Gst/Event.cs
@@ -163,6 +163,17 @@ namespace Gst {
}
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ static extern void gst_event_parse_gap_flags(IntPtr raw, out int flags);
+
+ public Gst.GapFlags ParseGapFlags() {
+ Gst.GapFlags flags;
+ int native_flags;
+ gst_event_parse_gap_flags(Handle, out native_flags);
+ flags = (Gst.GapFlags) native_flags;
+ return flags;
+ }
+
+ [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_event_parse_group_id(IntPtr raw, out uint group_id);
public bool ParseGroupId(out uint group_id) {
@@ -380,6 +391,15 @@ namespace Gst {
}
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ static extern void gst_event_set_gap_flags(IntPtr raw, int flags);
+
+ public Gst.GapFlags GapFlags {
+ set {
+ gst_event_set_gap_flags(Handle, (int) value);
+ }
+ }
+
+ [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gst_event_set_group_id(IntPtr raw, uint group_id);
public uint GroupId {