gstreamer/sources/generated/Gst/Parse.cs
Thibault Saunier 2d00f898fb Move generated files to dedicated folders named by namespace
Making it cleaner and simpler to navigate and removing previous
ugly and now useless hack where we were renaming files ourself
to make meson happy.
2018-03-11 21:47:35 -03:00

127 lines
5.9 KiB
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class Parse {
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_parse_bin_from_description(IntPtr bin_description, bool ghost_unlinked_pads, out IntPtr error);
public static unsafe Gst.Bin BinFromDescription(string bin_description, bool ghost_unlinked_pads) {
IntPtr native_bin_description = GLib.Marshaller.StringToPtrGStrdup (bin_description);
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_parse_bin_from_description(native_bin_description, ghost_unlinked_pads, out error);
Gst.Bin ret = GLib.Object.GetObject(raw_ret) as Gst.Bin;
GLib.Marshaller.Free (native_bin_description);
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_parse_bin_from_description_full(IntPtr bin_description, bool ghost_unlinked_pads, IntPtr context, int flags, out IntPtr error);
public static unsafe Gst.Element BinFromDescriptionFull(string bin_description, bool ghost_unlinked_pads, Gst.ParseContext context, Gst.ParseFlags flags) {
IntPtr native_bin_description = GLib.Marshaller.StringToPtrGStrdup (bin_description);
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_parse_bin_from_description_full(native_bin_description, ghost_unlinked_pads, context == null ? IntPtr.Zero : context.Handle, (int) flags, out error);
Gst.Element ret = GLib.Object.GetObject(raw_ret) as Gst.Element;
GLib.Marshaller.Free (native_bin_description);
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
public static Gst.Element BinFromDescriptionFull(string bin_description, bool ghost_unlinked_pads, Gst.ParseFlags flags) {
return BinFromDescriptionFull (bin_description, ghost_unlinked_pads, null, flags);
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern uint gst_parse_error_quark();
public static uint ErrorQuark() {
uint raw_ret = gst_parse_error_quark();
uint ret = raw_ret;
return ret;
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_parse_launch(IntPtr pipeline_description, out IntPtr error);
public static unsafe Gst.Element Launch(string pipeline_description) {
IntPtr native_pipeline_description = GLib.Marshaller.StringToPtrGStrdup (pipeline_description);
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_parse_launch(native_pipeline_description, out error);
Gst.Element ret = GLib.Object.GetObject(raw_ret) as Gst.Element;
GLib.Marshaller.Free (native_pipeline_description);
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_parse_launch_full(IntPtr pipeline_description, IntPtr context, int flags, out IntPtr error);
public static unsafe Gst.Element LaunchFull(string pipeline_description, Gst.ParseContext context, Gst.ParseFlags flags) {
IntPtr native_pipeline_description = GLib.Marshaller.StringToPtrGStrdup (pipeline_description);
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_parse_launch_full(native_pipeline_description, context == null ? IntPtr.Zero : context.Handle, (int) flags, out error);
Gst.Element ret = GLib.Object.GetObject(raw_ret) as Gst.Element;
GLib.Marshaller.Free (native_pipeline_description);
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
public static Gst.Element LaunchFull(string pipeline_description, Gst.ParseFlags flags) {
return LaunchFull (pipeline_description, null, flags);
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_parse_launchv(IntPtr[] argv, out IntPtr error);
public static unsafe Gst.Element Launchv(string[] argv) {
int cnt_argv = argv == null ? 0 : argv.Length;
IntPtr[] native_argv = new IntPtr [cnt_argv + 1];
for (int i = 0; i < cnt_argv; i++)
native_argv [i] = GLib.Marshaller.StringToPtrGStrdup (argv[i]);
native_argv [cnt_argv] = IntPtr.Zero;
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_parse_launchv(native_argv, out error);
Gst.Element ret = GLib.Object.GetObject(raw_ret) as Gst.Element;
for (int i = 0; i < native_argv.Length - 1; i++) {
argv [i] = GLib.Marshaller.Utf8PtrToString (native_argv[i]);
GLib.Marshaller.Free (native_argv[i]);
}
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern unsafe IntPtr gst_parse_launchv_full(IntPtr[] argv, IntPtr context, int flags, out IntPtr error);
public static unsafe Gst.Element LaunchvFull(string[] argv, Gst.ParseContext context, Gst.ParseFlags flags) {
int cnt_argv = argv == null ? 0 : argv.Length;
IntPtr[] native_argv = new IntPtr [cnt_argv + 1];
for (int i = 0; i < cnt_argv; i++)
native_argv [i] = GLib.Marshaller.StringToPtrGStrdup (argv[i]);
native_argv [cnt_argv] = IntPtr.Zero;
IntPtr error = IntPtr.Zero;
IntPtr raw_ret = gst_parse_launchv_full(native_argv, context == null ? IntPtr.Zero : context.Handle, (int) flags, out error);
Gst.Element ret = GLib.Object.GetObject(raw_ret) as Gst.Element;
for (int i = 0; i < native_argv.Length - 1; i++) {
argv [i] = GLib.Marshaller.Utf8PtrToString (native_argv[i]);
GLib.Marshaller.Free (native_argv[i]);
}
if (error != IntPtr.Zero) throw new GLib.GException (error);
return ret;
}
public static Gst.Element LaunchvFull(string[] argv, Gst.ParseFlags flags) {
return LaunchvFull (argv, null, flags);
}
#endregion
}
}