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

32 lines
705 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.VideoCaptionTypeGType))]
public enum VideoCaptionType {
Unknown = 0,
Cea608Raw = 1,
Cea608S3341a = 2,
Cea708Raw = 3,
Cea708Cdp = 4,
}
internal class VideoCaptionTypeGType {
[DllImport ("gstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_video_caption_type_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_video_caption_type_get_type ());
}
}
}
#endregion
}