gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.Audio/AudioRingBufferFormatType.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

43 lines
890 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.AudioRingBufferFormatTypeGType))]
public enum AudioRingBufferFormatType {
Raw = 0,
MuLaw = 1,
ALaw = 2,
ImaAdpcm = 3,
Mpeg = 4,
Gsm = 5,
Iec958 = 6,
Ac3 = 7,
Eac3 = 8,
Dts = 9,
Mpeg2Aac = 10,
Mpeg4Aac = 11,
Mpeg2AacRaw = 12,
Mpeg4AacRaw = 13,
Flac = 14,
Dsd = 15,
}
internal class AudioRingBufferFormatTypeGType {
[DllImport ("gstaudio-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_audio_ring_buffer_format_type_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_audio_ring_buffer_format_type_get_type ());
}
}
}
#endregion
}