blob: 6decf10d096a07c7d7f70d7f195ad85f4f9f3c50 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="hb_audio.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_audio_s type.
// </summary>
// <auto-generated> Disable Stylecop Warnings for this file </auto-generated>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.HbLib
{
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
public struct hb_audio_s
{
/// int
public int id;
/// hb_audio_config_t->hb_audio_config_s
public hb_audio_config_s config;
// Padding for the part of the struct we don't care about marshaling.
[MarshalAs(UnmanagedType.ByValArray, SizeConst = MarshalingConstants.AudioPaddingBytes, ArraySubType = UnmanagedType.U1)]
public byte[] padding;
/// Anonymous_e6c7b779_b5a3_4e80_9fa8_13619d14f545
//public Anonymous_e6c7b779_b5a3_4e80_9fa8_13619d14f545 priv;
}
[StructLayout(LayoutKind.Sequential)]
public struct hb_audio_config_s
{
public hb_audio_config_output_s output;
public hb_audio_config_input_s input;
/// Anonymous_a0a59d69_d9a4_4003_a198_f7c51511e31d
public Anonymous_a0a59d69_d9a4_4003_a198_f7c51511e31d flags;
public hb_audio_config_lang_s lang;
}
[StructLayout(LayoutKind.Sequential)]
public struct hb_audio_config_output_s
{
/// int
public int track;
/// uint32_t->unsigned int
public uint codec;
/// int
public int samplerate;
public int samples_per_frame;
/// int
public int bitrate;
public float quality;
public float compression_level;
/// int
public int mixdown;
/// double
public double dynamic_range_compression;
public double gain;
/// char*
//[MarshalAs(UnmanagedType.LPStr)]
//public string name;
public IntPtr name;
}
[StructLayout(LayoutKind.Sequential)]
public struct hb_audio_config_input_s
{
/// int
public int track;
/// uint32_t->unsigned int
public uint codec;
public uint reg_desc;
public uint stream_type;
public uint substream_type;
/// uint32_t->unsigned int
public uint codec_param;
/// uint32_t->unsigned int
public uint version;
/// uint32_t->unsigned int
public uint mode;
/// int
public int samplerate;
public int samples_per_frame;
/// int
public int bitrate;
/// int
public int channel_layout;
// hb_chan_map_t *
public IntPtr channel_map;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct hb_audio_config_lang_s
{
/// char[1024]
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
public string description;
/// char[1024]
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
public string simple;
/// char[4]
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
public string iso639_2;
/// uint8_t->unsigned char
public byte type;
}
}
|