gstreamer/sources/generated/Gst.Video/VideoFormatInfo.cs
Thibault Saunier 2d00f898fb Move generated files to dedicated folders named by namespace
Making it cleaner and simpler to navigate and removing previous
ugly and now useless hack where we were renaming files ourself
to make meson happy.
2018-03-11 21:47:35 -03:00

84 lines
3.7 KiB
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.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
[StructLayout(LayoutKind.Sequential)]
public partial struct VideoFormatInfo : IEquatable<VideoFormatInfo> {
public Gst.Video.VideoFormat Format;
public string Name;
public string Description;
public Gst.Video.VideoFormatFlags Flags;
public uint Bits;
public uint NComponents;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public uint[] Shift;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public uint[] Depth;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public int[] PixelStride;
public uint NPlanes;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public uint[] Plane;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public uint[] Poffset;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public uint[] WSub;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
public uint[] HSub;
public Gst.Video.VideoFormat UnpackFormat;
private Gst.VideoSharp.VideoFormatUnpackNative _unpack_func;
public Gst.Video.VideoFormatUnpack UnpackFunc {
get {
return Gst.VideoSharp.VideoFormatUnpackWrapper.GetManagedDelegate (_unpack_func);
}
}
public int PackLines;
private Gst.VideoSharp.VideoFormatPackNative _pack_func;
public Gst.Video.VideoFormatPack PackFunc {
get {
return Gst.VideoSharp.VideoFormatPackWrapper.GetManagedDelegate (_pack_func);
}
}
public Gst.Video.VideoTileMode TileMode;
public uint TileWs;
public uint TileHs;
[MarshalAs (UnmanagedType.ByValArray, SizeConst=4)]
private IntPtr[] _gstGstReserved;
public static Gst.Video.VideoFormatInfo Zero = new Gst.Video.VideoFormatInfo ();
public static Gst.Video.VideoFormatInfo New(IntPtr raw) {
if (raw == IntPtr.Zero)
return Gst.Video.VideoFormatInfo.Zero;
return (Gst.Video.VideoFormatInfo) Marshal.PtrToStructure (raw, typeof (Gst.Video.VideoFormatInfo));
}
public bool Equals (VideoFormatInfo other)
{
return true && Format.Equals (other.Format) && Name.Equals (other.Name) && Description.Equals (other.Description) && Flags.Equals (other.Flags) && Bits.Equals (other.Bits) && NComponents.Equals (other.NComponents) && Shift.Equals (other.Shift) && Depth.Equals (other.Depth) && PixelStride.Equals (other.PixelStride) && NPlanes.Equals (other.NPlanes) && Plane.Equals (other.Plane) && Poffset.Equals (other.Poffset) && WSub.Equals (other.WSub) && HSub.Equals (other.HSub) && UnpackFormat.Equals (other.UnpackFormat) && UnpackFunc.Equals (other.UnpackFunc) && PackLines.Equals (other.PackLines) && PackFunc.Equals (other.PackFunc) && TileMode.Equals (other.TileMode) && TileWs.Equals (other.TileWs) && TileHs.Equals (other.TileHs);
}
public override bool Equals (object other)
{
return other is VideoFormatInfo && Equals ((VideoFormatInfo) other);
}
public override int GetHashCode ()
{
return this.GetType ().FullName.GetHashCode () ^ Format.GetHashCode () ^ Name.GetHashCode () ^ Description.GetHashCode () ^ Flags.GetHashCode () ^ Bits.GetHashCode () ^ NComponents.GetHashCode () ^ Shift.GetHashCode () ^ Depth.GetHashCode () ^ PixelStride.GetHashCode () ^ NPlanes.GetHashCode () ^ Plane.GetHashCode () ^ Poffset.GetHashCode () ^ WSub.GetHashCode () ^ HSub.GetHashCode () ^ UnpackFormat.GetHashCode () ^ UnpackFunc.GetHashCode () ^ PackLines.GetHashCode () ^ PackFunc.GetHashCode () ^ TileMode.GetHashCode () ^ TileWs.GetHashCode () ^ TileHs.GetHashCode ();
}
private static GLib.GType GType {
get { return GLib.GType.Pointer; }
}
#endregion
}
}