gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.Video/VideoColorMatrix.cs

34 lines
713 B
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.Video {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
[GLib.GType (typeof (Gst.Video.VideoColorMatrixGType))]
public enum VideoColorMatrix {
Unknown = 0,
Rgb = 1,
Fcc = 2,
Bt709 = 3,
Bt601 = 4,
Smpte240m = 5,
Bt2020 = 6,
}
internal class VideoColorMatrixGType {
[DllImport ("gstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_video_color_matrix_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_video_color_matrix_get_type ());
}
}
}
#endregion
}