blob: 2d2632622e49408a5022402d75f59ca176c8f9cb (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="hb_image_s.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_image_s type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.HbLib
{
using System;
using System.Runtime.InteropServices;
/// <summary>
/// The hb_image_s.
/// </summary>
internal struct hb_image_s
{
public int format;
public int width;
public int height;
public IntPtr data;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4, ArraySubType = UnmanagedType.I4)]
public image_plane[] plane;
}
/// <summary>
/// The image_plane.
/// </summary>
internal struct image_plane
{
public IntPtr data;
public int width;
public int height;
public int stride;
public int height_stride;
public int size;
}
}
|