Release 1.22.7
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst.Audio / AudioResamplerMethod.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.AudioResamplerMethodGType))]
11         public enum AudioResamplerMethod {
12
13                 Nearest = 0,
14                 Linear = 1,
15                 Cubic = 2,
16                 BlackmanNuttall = 3,
17                 Kaiser = 4,
18         }
19
20         internal class AudioResamplerMethodGType {
21                 [DllImport ("gstaudio-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
22                 static extern IntPtr gst_audio_resampler_method_get_type ();
23
24                 public static GLib.GType GType {
25                         get {
26                                 return new GLib.GType (gst_audio_resampler_method_get_type ());
27                         }
28                 }
29         }
30 #endregion
31 }