summaryrefslogtreecommitdiff
path: root/sources/generated/Gst.Video/VideoInfo.cs
blob: db2636877e8b635cbb49f704ef9d895762aadf1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.

namespace Gst.Video {

	using System;
	using System.Collections;
	using System.Collections.Generic;
	using System.Runtime.InteropServices;

#region Autogenerated code
	public partial class VideoInfo : GLib.Opaque {

		public Gst.Video.VideoFormatInfo Finfo {
			get {
				unsafe {
					IntPtr* raw_ptr = (IntPtr*)(((byte*)Handle) + abi_info.GetFieldOffset("finfo"));
					return Gst.Video.VideoFormatInfo.New ((*raw_ptr));
				}
			}
			set {
				unsafe {
					IntPtr* raw_ptr = (IntPtr*)(((byte*)Handle) + abi_info.GetFieldOffset("finfo"));
					*raw_ptr = GLib.Marshaller.StructureToPtrAlloc (value);
				}
			}
		}

		public Gst.Video.VideoInterlaceMode InterlaceMode {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("interlace_mode"));
					return (Gst.Video.VideoInterlaceMode) (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("interlace_mode"));
					*raw_ptr = (int) value;
				}
			}
		}

		public Gst.Video.VideoFlags Flags {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("flags"));
					return (Gst.Video.VideoFlags) (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("flags"));
					*raw_ptr = (int) value;
				}
			}
		}

		public int Width {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("width"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("width"));
					*raw_ptr = value;
				}
			}
		}

		public int Height {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("height"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("height"));
					*raw_ptr = value;
				}
			}
		}

		public ulong Size {
			get {
				unsafe {
					UIntPtr* raw_ptr = (UIntPtr*)(((byte*)Handle) + abi_info.GetFieldOffset("size"));
					return (ulong) (*raw_ptr);
				}
			}
			set {
				unsafe {
					UIntPtr* raw_ptr = (UIntPtr*)(((byte*)Handle) + abi_info.GetFieldOffset("size"));
					*raw_ptr = new UIntPtr (value);
				}
			}
		}

		public int Views {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("views"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("views"));
					*raw_ptr = value;
				}
			}
		}

		public Gst.Video.VideoChromaSite ChromaSite {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("chroma_site"));
					return (Gst.Video.VideoChromaSite) (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("chroma_site"));
					*raw_ptr = (int) value;
				}
			}
		}

		public Gst.Video.VideoColorimetry Colorimetry {
			get {
				unsafe {
					IntPtr* raw_ptr = (IntPtr*)(((byte*)Handle) + abi_info.GetFieldOffset("colorimetry"));
					return Gst.Video.VideoColorimetry.New ((*raw_ptr));
				}
			}
			set {
				unsafe {
					IntPtr* raw_ptr = (IntPtr*)(((byte*)Handle) + abi_info.GetFieldOffset("colorimetry"));
					*raw_ptr = GLib.Marshaller.StructureToPtrAlloc (value);
				}
			}
		}

		public int ParN {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("par_n"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("par_n"));
					*raw_ptr = value;
				}
			}
		}

		public int ParD {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("par_d"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("par_d"));
					*raw_ptr = value;
				}
			}
		}

		public int FpsN {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("fps_n"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("fps_n"));
					*raw_ptr = value;
				}
			}
		}

		public int FpsD {
			get {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("fps_d"));
					return (*raw_ptr);
				}
			}
			set {
				unsafe {
					int* raw_ptr = (int*)(((byte*)Handle) + abi_info.GetFieldOffset("fps_d"));
					*raw_ptr = value;
				}
			}
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gst_video_info_get_type();

		public static GLib.GType GType { 
			get {
				IntPtr raw_ret = gst_video_info_get_type();
				GLib.GType ret = new GLib.GType(raw_ret);
				return ret;
			}
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gst_video_info_align(IntPtr raw, IntPtr align);

		public bool Align(Gst.Video.VideoAlignment align) {
			IntPtr native_align = GLib.Marshaller.StructureToPtrAlloc (align);
			bool raw_ret = gst_video_info_align(Handle, native_align);
			bool ret = raw_ret;
			Marshal.FreeHGlobal (native_align);
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gst_video_info_convert(IntPtr raw, int src_format, long src_value, int dest_format, out long dest_value);

		public bool Convert(Gst.Format src_format, long src_value, Gst.Format dest_format, out long dest_value) {
			bool raw_ret = gst_video_info_convert(Handle, (int) src_format, src_value, (int) dest_format, out dest_value);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gst_video_info_copy(IntPtr raw);

		public Gst.Video.VideoInfo Copy() {
			IntPtr raw_ret = gst_video_info_copy(Handle);
			Gst.Video.VideoInfo ret = raw_ret == IntPtr.Zero ? null : (Gst.Video.VideoInfo) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Video.VideoInfo), true);
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gst_video_info_from_caps(IntPtr raw, IntPtr caps);

		public bool FromCaps(Gst.Caps caps) {
			bool raw_ret = gst_video_info_from_caps(Handle, caps == null ? IntPtr.Zero : caps.Handle);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern void gst_video_info_init(IntPtr raw);

		public void Init() {
			gst_video_info_init(Handle);
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gst_video_info_is_equal(IntPtr raw, IntPtr other);

		public bool IsEqual(Gst.Video.VideoInfo other) {
			bool raw_ret = gst_video_info_is_equal(Handle, other == null ? IntPtr.Zero : other.Handle);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gst_video_info_set_format(IntPtr raw, int format, uint width, uint height);

		public bool SetFormat(Gst.Video.VideoFormat format, uint width, uint height) {
			bool raw_ret = gst_video_info_set_format(Handle, (int) format, width, height);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gst_video_info_set_interlaced_format(IntPtr raw, int format, int mode, uint width, uint height);

		public bool SetInterlacedFormat(Gst.Video.VideoFormat format, Gst.Video.VideoInterlaceMode mode, uint width, uint height) {
			bool raw_ret = gst_video_info_set_interlaced_format(Handle, (int) format, (int) mode, width, height);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gst_video_info_to_caps(IntPtr raw);

		public Gst.Caps ToCaps() {
			IntPtr raw_ret = gst_video_info_to_caps(Handle);
			Gst.Caps ret = raw_ret == IntPtr.Zero ? null : (Gst.Caps) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Caps), true);
			return ret;
		}

		public VideoInfo(IntPtr raw) : base(raw) {}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gst_video_info_new();

		public VideoInfo () 
		{
			Raw = gst_video_info_new();
		}

		[DllImport("libgstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern void gst_video_info_free(IntPtr raw);

		protected override void Free (IntPtr raw)
		{
			gst_video_info_free (raw);
		}

		class FinalizerInfo {
			IntPtr handle;

			public FinalizerInfo (IntPtr handle)
			{
				this.handle = handle;
			}

			public bool Handler ()
			{
				gst_video_info_free (handle);
				return false;
			}
		}

		~VideoInfo ()
		{
			if (!Owned)
				return;
			FinalizerInfo info = new FinalizerInfo (Handle);
			GLib.Timeout.Add (50, new GLib.TimeoutHandler (info.Handler));
		}


		// Internal representation of the wrapped structure ABI.
		static GLib.AbiStruct _abi_info = null;
		static public GLib.AbiStruct abi_info {
			get {
				if (_abi_info == null)
					_abi_info = new GLib.AbiStruct (new List<GLib.AbiField>{ 
						new GLib.AbiField("finfo"
							, 0
							, (uint) Marshal.SizeOf(typeof(IntPtr)) // finfo
							, null
							, "interlace_mode"
							, (uint) Marshal.SizeOf(typeof(IntPtr))
							, 0
							),
						new GLib.AbiField("interlace_mode"
							, -1
							, (uint) Marshal.SizeOf(System.Enum.GetUnderlyingType(typeof(Gst.Video.VideoInterlaceMode))) // interlace_mode
							, "finfo"
							, "flags"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_interlace_modeAlign), "interlace_mode")
							, 0
							),
						new GLib.AbiField("flags"
							, -1
							, (uint) Marshal.SizeOf(System.Enum.GetUnderlyingType(typeof(Gst.Video.VideoFlags))) // flags
							, "interlace_mode"
							, "width"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_flagsAlign), "flags")
							, 0
							),
						new GLib.AbiField("width"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // width
							, "flags"
							, "height"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_widthAlign), "width")
							, 0
							),
						new GLib.AbiField("height"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // height
							, "width"
							, "size"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_heightAlign), "height")
							, 0
							),
						new GLib.AbiField("size"
							, -1
							, (uint) Marshal.SizeOf(typeof(ulong)) // size
							, "height"
							, "views"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_sizeAlign), "size")
							, 0
							),
						new GLib.AbiField("views"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // views
							, "size"
							, "chroma_site"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_viewsAlign), "views")
							, 0
							),
						new GLib.AbiField("chroma_site"
							, -1
							, (uint) Marshal.SizeOf(System.Enum.GetUnderlyingType(typeof(Gst.Video.VideoChromaSite))) // chroma_site
							, "views"
							, "colorimetry"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_chroma_siteAlign), "chroma_site")
							, 0
							),
						new GLib.AbiField("colorimetry"
							, -1
							, (uint) Marshal.SizeOf(typeof(Gst.Video.VideoColorimetry)) // colorimetry
							, "chroma_site"
							, "par_n"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_colorimetryAlign), "colorimetry")
							, 0
							),
						new GLib.AbiField("par_n"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // par_n
							, "colorimetry"
							, "par_d"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_par_nAlign), "par_n")
							, 0
							),
						new GLib.AbiField("par_d"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // par_d
							, "par_n"
							, "fps_n"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_par_dAlign), "par_d")
							, 0
							),
						new GLib.AbiField("fps_n"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // fps_n
							, "par_d"
							, "fps_d"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_fps_nAlign), "fps_n")
							, 0
							),
						new GLib.AbiField("fps_d"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) // fps_d
							, "fps_n"
							, "offset"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_fps_dAlign), "fps_d")
							, 0
							),
						new GLib.AbiField("offset"
							, -1
							, (uint) Marshal.SizeOf(typeof(ulong)) * 4 // offset
							, "fps_d"
							, "stride"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_offsetAlign), "offset")
							, 0
							),
						new GLib.AbiField("stride"
							, -1
							, (uint) Marshal.SizeOf(typeof(int)) * 4 // stride
							, "offset"
							, "ABI"
							, (long) Marshal.OffsetOf(typeof(GstVideoInfo_strideAlign), "stride")
							, 0
							),
						// union struct ABI.abi
							new GLib.AbiField("ABI.abi.multiview_mode"
								, -1
								, (uint) Marshal.SizeOf(System.Enum.GetUnderlyingType(typeof(Gst.Video.VideoMultiviewMode))) // ABI.abi.multiview_mode
								, "stride"
								, "ABI.abi.multiview_flags"
								, (long) Marshal.OffsetOf(typeof(GstVideoInfo_ABI_abi_multiview_modeAlign), "ABI_abi_multiview_mode")
								, 0
								),
							new GLib.AbiField("ABI.abi.multiview_flags"
								, -1
								, (uint) Marshal.SizeOf(System.Enum.GetUnderlyingType(typeof(Gst.Video.VideoMultiviewFlags))) // ABI.abi.multiview_flags
								, "ABI.abi.multiview_mode"
								, "ABI.abi.field_order"
								, (long) Marshal.OffsetOf(typeof(GstVideoInfo_ABI_abi_multiview_flagsAlign), "ABI_abi_multiview_flags")
								, 0
								),
							new GLib.AbiField("ABI.abi.field_order"
								, -1
								, (uint) Marshal.SizeOf(System.Enum.GetUnderlyingType(typeof(Gst.Video.VideoFieldOrder))) // ABI.abi.field_order
								, "ABI.abi.multiview_flags"
								, null
								, (long) Marshal.OffsetOf(typeof(GstVideoInfo_ABI_abi_field_orderAlign), "ABI_abi_field_order")
								, 0
								),
						// End ABI.abi

						// union struct ABI
							new GLib.AbiField("ABI._gst_reserved"
								, -1
								, (uint) Marshal.SizeOf(typeof(IntPtr)) * 4 // ABI._gst_reserved
								, "stride"
								, null
								, (uint) Marshal.SizeOf(typeof(IntPtr))
								, 0
								),
						// End ABI

						new GLib.AbiField("ABI"
							, -1
							, new List<List<string>>() {  // union ABI
						new List<string>() {"ABI.abi.multiview_mode","ABI.abi.multiview_flags","ABI.abi.field_order"},
						new List<string>() {"ABI._gst_reserved"}
					  }
							, "stride"
							, null
							, 0
							),
					});

				return _abi_info;
			}
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_interlace_modeAlign
		{
			sbyte f1;
			private Gst.Video.VideoInterlaceMode interlace_mode;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_flagsAlign
		{
			sbyte f1;
			private Gst.Video.VideoFlags flags;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_widthAlign
		{
			sbyte f1;
			private int width;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_heightAlign
		{
			sbyte f1;
			private int height;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_sizeAlign
		{
			sbyte f1;
			private UIntPtr size;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_viewsAlign
		{
			sbyte f1;
			private int views;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_chroma_siteAlign
		{
			sbyte f1;
			private Gst.Video.VideoChromaSite chroma_site;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_colorimetryAlign
		{
			sbyte f1;
			private Gst.Video.VideoColorimetry colorimetry;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_par_nAlign
		{
			sbyte f1;
			private int par_n;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_par_dAlign
		{
			sbyte f1;
			private int par_d;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_fps_nAlign
		{
			sbyte f1;
			private int fps_n;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_fps_dAlign
		{
			sbyte f1;
			private int fps_d;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_offsetAlign
		{
			sbyte f1;
			[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
			private ulong[] offset;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_strideAlign
		{
			sbyte f1;
			[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
			private int[] stride;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_ABI_abi_multiview_modeAlign
		{
			sbyte f1;
			private Gst.Video.VideoMultiviewMode ABI_abi_multiview_mode;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_ABI_abi_multiview_flagsAlign
		{
			sbyte f1;
			private Gst.Video.VideoMultiviewFlags ABI_abi_multiview_flags;
		}

		[StructLayout(LayoutKind.Sequential)]
		public struct GstVideoInfo_ABI_abi_field_orderAlign
		{
			sbyte f1;
			private Gst.Video.VideoFieldOrder ABI_abi_field_order;
		}


		// End of the ABI representation.

#endregion
	}
}