Release 1.22.7
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst.Audio / AudioFormat.cs
1 // This file was generated by the Gtk# code generator.
2 // Any changes made will be lost if regenerated.
3
4 namespace Gst.Audio {
5
6         using System;
7         using System.Runtime.InteropServices;
8
9 #region Autogenerated code
10         [GLib.GType (typeof (Gst.Audio.AudioFormatGType))]
11         public enum AudioFormat {
12
13                 Unknown = 0,
14                 Encoded = 1,
15                 S8 = 2,
16                 U8 = 3,
17                 S16le = 4,
18                 S16 = 4,
19                 S16be = 5,
20                 U16le = 6,
21                 U16 = 6,
22                 U16be = 7,
23                 S2432le = 8,
24                 S2432 = 8,
25                 S2432be = 9,
26                 U2432le = 10,
27                 U2432 = 10,
28                 U2432be = 11,
29                 S32le = 12,
30                 S32 = 12,
31                 S32be = 13,
32                 U32le = 14,
33                 U32 = 14,
34                 U32be = 15,
35                 S24le = 16,
36                 S24 = 16,
37                 S24be = 17,
38                 U24le = 18,
39                 U24 = 18,
40                 U24be = 19,
41                 S20le = 20,
42                 S20 = 20,
43                 S20be = 21,
44                 U20le = 22,
45                 U20 = 22,
46                 U20be = 23,
47                 S18le = 24,
48                 S18 = 24,
49                 S18be = 25,
50                 U18le = 26,
51                 U18 = 26,
52                 U18be = 27,
53                 F32le = 28,
54                 F32 = 28,
55                 F32be = 29,
56                 F64le = 30,
57                 F64 = 30,
58                 F64be = 31,
59         }
60
61         internal class AudioFormatGType {
62                 [DllImport ("gstaudio-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
63                 static extern IntPtr gst_audio_format_get_type ();
64
65                 public static GLib.GType GType {
66                         get {
67                                 return new GLib.GType (gst_audio_format_get_type ());
68                         }
69                 }
70         }
71 #endregion
72 }