Release 1.22.7
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst.Audio / AudioResamplerFlags.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         [Flags]
11         [GLib.GType (typeof (Gst.Audio.AudioResamplerFlagsGType))]
12         public enum AudioResamplerFlags : uint {
13
14                 None = 0,
15                 NonInterleavedIn = 1,
16                 NonInterleavedOut = 2,
17                 VariableRate = 4,
18         }
19
20         internal class AudioResamplerFlagsGType {
21                 [DllImport ("gstaudio-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
22                 static extern IntPtr gst_audio_resampler_flags_get_type ();
23
24                 public static GLib.GType GType {
25                         get {
26                                 return new GLib.GType (gst_audio_resampler_flags_get_type ());
27                         }
28                 }
29         }
30 #endregion
31 }