gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.Audio/DsdFormat.cs
Andoni Morales Alastruey 4be602a137 csharp: update c# bindings
Update to C# bindings to use a more recent version of GtkSharp
and regenerate the bindings with that version

Fix #1718
2023-12-07 17:34:34 +01:00

36 lines
774 B
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.Audio {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
[GLib.GType (typeof (Gst.Audio.DsdFormatGType))]
public enum DsdFormat {
DsdFormatUnknown = 0,
DsdFormatU8 = 1,
DsdFormatU16le = 2,
DsdFormatU16 = 2,
DsdFormatU16be = 3,
DsdFormatU32le = 4,
DsdFormatU32 = 4,
DsdFormatU32be = 5,
NumDsdFormats = 6,
}
internal class DsdFormatGType {
[DllImport ("gstaudio-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_dsd_format_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_dsd_format_get_type ());
}
}
}
#endregion
}