blob: 8a6cfa3e69f9ec64ebb51eed7730ab02277cffb1 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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;
}
}
|