diff options
author | sr55 <[email protected]> | 2018-06-05 21:52:23 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-06-05 21:52:23 +0100 |
commit | 5c5b4d7773126d3f4852deb01856c905d2398b5e (patch) | |
tree | 54eaf4d35c86d71372e16b5f4536a8f3ca851f09 /win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_geometry.cs | |
parent | 5445592f20e5e645dce0df077afe7ecc2617b95f (diff) |
WinGui: Rename HandBrake.ApplicationServices back to HandBrake.Interop. It's moving back to being more of an libhb interop/abstraction library only.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_geometry.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_geometry.cs | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_geometry.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_geometry.cs deleted file mode 100644 index 8a6cfa3e6..000000000 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_geometry.cs +++ /dev/null @@ -1,101 +0,0 @@ -// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="hb_geometry.cs" company="HandBrake Project (http://handbrake.fr)">
-// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
-// </copyright>
-// <summary>
-// Defines the hb_geometry type.
-// </summary>
-// <auto-generated>Disable Stylecop Warnings for this file</auto-generated>
-// --------------------------------------------------------------------------------------------------------------------
-
-namespace HandBrake.ApplicationServices.Interop.HbLib
-{
- using System.Runtime.InteropServices;
-
- /// <summary>
- /// The hb_geometry_s.
- /// </summary>
- [StructLayout(LayoutKind.Sequential)]
- public struct hb_geometry_s
- {
- /// <summary>
- /// The width.
- /// </summary>
- public int width;
-
- /// <summary>
- /// The height.
- /// </summary>
- public int height;
-
- /// <summary>
- /// The par.
- /// </summary>
- public hb_rational_t par;
- }
-
- /// <summary>
- /// The hb_ui_geometry_s.
- /// </summary>
- [StructLayout(LayoutKind.Sequential)]
- public struct hb_geometry_settings_s
- {
- /// <summary>
- /// Anamorphic mode, see job struct anamorphic
- /// </summary>
- public int mode;
-
- /// <summary>
- /// Specifies settings that shouldn't be changed
- /// </summary>
- public int keep;
-
- /// <summary>
- /// use dvd dimensions to determine PAR
- /// </summary>
- public int itu_par;
-
- /// <summary>
- /// pixel alignment for loose anamorphic
- /// </summary>
- public int modulus;
-
- /// <summary>
- /// Cropping
- /// </summary>
- [MarshalAs(UnmanagedType.ByValArray, SizeConst = 4, ArraySubType = UnmanagedType.I4)]
- public int[] crop;
-
- /// <summary>
- /// max destination storage width
- /// </summary>
- public int maxWidth;
-
- /// <summary>
- /// max destination storage height
- /// </summary>
- public int maxHeight;
-
- /// <summary>
- /// Pixel aspect used in custom anamorphic
- /// </summary>
- public hb_geometry_s geometry;
- }
-
- /// <summary>
- /// The hb_rational_t.
- /// </summary>
- [StructLayout(LayoutKind.Sequential)]
- public struct hb_rational_t
- {
- /// <summary>
- /// The num. W
- /// </summary>
- public int num;
-
- /// <summary>
- /// The den. H
- /// </summary>
- public int den;
- }
-}
\ No newline at end of file |