Release 1.20.0
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst.PbUtils / DiscovererVideoInfo.cs
1 // This file was generated by the Gtk# code generator.
2 // Any changes made will be lost if regenerated.
3
4 namespace Gst.PbUtils {
5
6         using System;
7         using System.Collections;
8         using System.Collections.Generic;
9         using System.Runtime.InteropServices;
10
11 #region Autogenerated code
12         public partial class DiscovererVideoInfo : Gst.PbUtils.DiscovererStreamInfo {
13
14                 public DiscovererVideoInfo (IntPtr raw) : base(raw) {}
15
16                 protected DiscovererVideoInfo() : base(IntPtr.Zero)
17                 {
18                         CreateNativeObject (new string [0], new GLib.Value [0]);
19                 }
20
21                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
22                 static extern IntPtr gst_discoverer_video_info_get_type();
23
24                 public static new GLib.GType GType { 
25                         get {
26                                 IntPtr raw_ret = gst_discoverer_video_info_get_type();
27                                 GLib.GType ret = new GLib.GType(raw_ret);
28                                 return ret;
29                         }
30                 }
31
32                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
33                 static extern uint gst_discoverer_video_info_get_bitrate(IntPtr raw);
34
35                 public uint Bitrate { 
36                         get {
37                                 uint raw_ret = gst_discoverer_video_info_get_bitrate(Handle);
38                                 uint ret = raw_ret;
39                                 return ret;
40                         }
41                 }
42
43                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
44                 static extern uint gst_discoverer_video_info_get_depth(IntPtr raw);
45
46                 public uint Depth { 
47                         get {
48                                 uint raw_ret = gst_discoverer_video_info_get_depth(Handle);
49                                 uint ret = raw_ret;
50                                 return ret;
51                         }
52                 }
53
54                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
55                 static extern uint gst_discoverer_video_info_get_framerate_denom(IntPtr raw);
56
57                 public uint FramerateDenom { 
58                         get {
59                                 uint raw_ret = gst_discoverer_video_info_get_framerate_denom(Handle);
60                                 uint ret = raw_ret;
61                                 return ret;
62                         }
63                 }
64
65                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
66                 static extern uint gst_discoverer_video_info_get_framerate_num(IntPtr raw);
67
68                 public uint FramerateNum { 
69                         get {
70                                 uint raw_ret = gst_discoverer_video_info_get_framerate_num(Handle);
71                                 uint ret = raw_ret;
72                                 return ret;
73                         }
74                 }
75
76                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
77                 static extern uint gst_discoverer_video_info_get_height(IntPtr raw);
78
79                 public uint Height { 
80                         get {
81                                 uint raw_ret = gst_discoverer_video_info_get_height(Handle);
82                                 uint ret = raw_ret;
83                                 return ret;
84                         }
85                 }
86
87                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
88                 static extern uint gst_discoverer_video_info_get_max_bitrate(IntPtr raw);
89
90                 public uint MaxBitrate { 
91                         get {
92                                 uint raw_ret = gst_discoverer_video_info_get_max_bitrate(Handle);
93                                 uint ret = raw_ret;
94                                 return ret;
95                         }
96                 }
97
98                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
99                 static extern uint gst_discoverer_video_info_get_par_denom(IntPtr raw);
100
101                 public uint ParDenom { 
102                         get {
103                                 uint raw_ret = gst_discoverer_video_info_get_par_denom(Handle);
104                                 uint ret = raw_ret;
105                                 return ret;
106                         }
107                 }
108
109                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
110                 static extern uint gst_discoverer_video_info_get_par_num(IntPtr raw);
111
112                 public uint ParNum { 
113                         get {
114                                 uint raw_ret = gst_discoverer_video_info_get_par_num(Handle);
115                                 uint ret = raw_ret;
116                                 return ret;
117                         }
118                 }
119
120                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
121                 static extern uint gst_discoverer_video_info_get_width(IntPtr raw);
122
123                 public uint Width { 
124                         get {
125                                 uint raw_ret = gst_discoverer_video_info_get_width(Handle);
126                                 uint ret = raw_ret;
127                                 return ret;
128                         }
129                 }
130
131                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
132                 static extern bool gst_discoverer_video_info_is_image(IntPtr raw);
133
134                 public bool IsImage { 
135                         get {
136                                 bool raw_ret = gst_discoverer_video_info_is_image(Handle);
137                                 bool ret = raw_ret;
138                                 return ret;
139                         }
140                 }
141
142                 [DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
143                 static extern bool gst_discoverer_video_info_is_interlaced(IntPtr raw);
144
145                 public bool IsInterlaced { 
146                         get {
147                                 bool raw_ret = gst_discoverer_video_info_is_interlaced(Handle);
148                                 bool ret = raw_ret;
149                                 return ret;
150                         }
151                 }
152
153
154                 static DiscovererVideoInfo ()
155                 {
156                         GtkSharp.GstreamerSharp.ObjectManager.Initialize ();
157                 }
158 #endregion
159         }
160 }