-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBDATypes.cs
425 lines (391 loc) · 9.83 KB
/
BDATypes.cs
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
#region license
/*
DirectShowLib - Provide access to DirectShow interfaces via .NET
Copyright (C) 2007
http://sourceforge.net/projects/directshownet/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#endregion
using System;
using System.Runtime.InteropServices;
namespace DirectShowLib.BDA
{
#region Declarations
#if ALLOW_UNTESTED_INTERFACES
/// <summary>
/// From BDA_EVENT_ID
/// </summary>
public enum BDAEventID
{
SignalLoss = 0,
SignalLock,
DataStart,
DataStop,
ChannelAcquired,
ChannelLost,
ChannelSourceChanged,
ChannelActivated,
ChannelDeactivated,
SubChannelAcquired,
SubChannelLost,
SubChannelSourceChanged,
SubChannelActivated,
SubChannelDeactivated,
AccessGranted,
AccessDenied,
OfferExtended,
PurchaseCompleted,
SmartCardInserted,
SmartCardRemoved
}
/// <summary>
/// From BDA_TEMPLATE_PIN_JOINT
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct BDATemplatePinJoint
{
public int uliTemplateConnection;
public int ulcInstancesMax;
}
/// <summary>
/// From KS_BDA_FRAME_INFO
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct KSBDAFrameInfo
{
public int ExtendedHeaderSize; // Size of this extended header
public int dwFrameFlags; //
public int ulEvent; //
public int ulChannelNumber; //
public int ulSubchannelNumber; //
public int ulReason; //
}
/// <summary>
/// From MPEG2_TRANSPORT_STRIDE
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct MPEG2TransportStride
{
public int dwOffset;
public int dwPacketLength;
public int dwStride;
}
/// <summary>
/// From ScanModulationTypes
/// </summary>
[Flags]
public enum ScanModulationTypes
{
ScanMod16QAM = 0x00000001,
ScanMod32QAM = 0x00000002,
ScanMod64QAM = 0x00000004,
ScanMod80QAM = 0x00000008,
ScanMod96QAM = 0x00000010,
ScanMod112QAM = 0x00000020,
ScanMod128QAM = 0x00000040,
ScanMod160QAM = 0x00000080,
ScanMod192QAM = 0x00000100,
ScanMod224QAM = 0x00000200,
ScanMod256QAM = 0x00000400,
ScanMod320QAM = 0x00000800,
ScanMod384QAM = 0x00001000,
ScanMod448QAM = 0x00002000,
ScanMod512QAM = 0x00004000,
ScanMod640QAM = 0x00008000,
ScanMod768QAM = 0x00010000,
ScanMod896QAM = 0x00020000,
ScanMod1024QAM = 0x00040000,
ScanModQPSK = 0x00080000,
ScanModBPSK = 0x00100000,
ScanModOQPSK = 0x00200000,
ScanMod8VSB = 0x00400000,
ScanMod16VSB = 0x00800000,
ScanModAM_RADIO = 0x01000000,
ScanModFM_RADIO = 0x02000000,
ScanMod8PSK = 0x04000000,
ScanModRF = 0x08000000,
MCEDigitalCable = ModulationType.Mod640Qam | ModulationType.Mod256Qam,
MCETerrestrialATSC = ModulationType.Mod8Vsb,
MCEAnalogTv = ModulationType.ModRF,
MCEAll_TV = unchecked((int)0xffffffff),
}
/// <summary>
/// From RollOff
/// </summary>
public enum RollOff
{
NotSet = -1,
NotDefined = 0,
Twenty = 1,
TwentyFive,
ThirtyFive,
Max
}
/// <summary>
/// From Pilot
/// </summary>
public enum Pilot
{
NotSet = -1,
NotDefined = 0,
Off = 1,
On,
Max
}
/// <summary>
/// From ApplicationTypeType
/// </summary>
public enum ApplicationTypeType
{
SCTE28ConditionalAccess = 0,
SCTE28PODHostBindingInformation,
SCTE28IPService,
SCTE28NetworkInterfaceSCTE55_2,
SCTE28NetworkInterfaceSCTE55_1,
SCTE28CopyProtection,
SCTE28Diagnostic,
SCTE28Undesignated,
SCTE28Reserved,
}
#endif
/// <summary>
/// From FECMethod
/// </summary>
public enum FECMethod
{
MethodNotSet = -1,
MethodNotDefined = 0,
Viterbi = 1, // FEC is a Viterbi Binary Convolution.
RS204_188, // The FEC is Reed-Solomon 204/188 (outer FEC)
Ldpc,
Bch,
RS147_130,
Max,
}
/// <summary>
/// From BinaryConvolutionCodeRate
/// </summary>
public enum BinaryConvolutionCodeRate
{
RateNotSet = -1,
RateNotDefined = 0,
Rate1_2 = 1, // 1/2
Rate2_3, // 2/3
Rate3_4, // 3/4
Rate3_5,
Rate4_5,
Rate5_6, // 5/6
Rate5_11,
Rate7_8, // 7/8
Rate1_4,
Rate1_3,
Rate2_5,
Rate6_7,
Rate8_9,
Rate9_10,
RateMax
}
/// <summary>
/// From Polarisation
/// </summary>
public enum Polarisation
{
NotSet = -1,
NotDefined = 0,
LinearH = 1, // Linear horizontal polarisation
LinearV, // Linear vertical polarisation
CircularL, // Circular left polarisation
CircularR, // Circular right polarisation
Max,
}
/// <summary>
/// From SpectralInversion
/// </summary>
public enum SpectralInversion
{
NotSet = -1,
NotDefined = 0,
Automatic = 1,
Normal,
Inverted,
Max
}
/// <summary>
/// From ModulationType
/// </summary>
public enum ModulationType
{
ModNotSet = -1,
ModNotDefined = 0,
Mod16Qam = 1,
Mod32Qam,
Mod64Qam,
Mod80Qam,
Mod96Qam,
Mod112Qam,
Mod128Qam,
Mod160Qam,
Mod192Qam,
Mod224Qam,
Mod256Qam,
Mod320Qam,
Mod384Qam,
Mod448Qam,
Mod512Qam,
Mod640Qam,
Mod768Qam,
Mod896Qam,
Mod1024Qam,
ModQpsk,
ModBpsk,
ModOqpsk,
Mod8Vsb,
Mod16Vsb,
ModAnalogAmplitude, // std am
ModAnalogFrequency, // std fm
Mod8Psk,
ModRF,
Mod16Apsk,
Mod32Apsk,
ModNbcQpsk,
ModNbc8Psk,
ModDirectTv,
ModMax
}
/// <summary>
/// From DVBSystemType
/// </summary>
public enum DVBSystemType
{
Cable,
Terrestrial,
Satellite,
}
/// <summary>
/// From HierarchyAlpha
/// </summary>
public enum HierarchyAlpha
{
HAlphaNotSet = -1,
HAlphaNotDefined = 0,
HAlpha1 = 1, // Hierarchy alpha is 1.
HAlpha2, // Hierarchy alpha is 2.
HAlpha4, // Hierarchy alpha is 4.
HAlphaMax,
}
/// <summary>
/// From GuardInterval
/// </summary>
public enum GuardInterval
{
GuardNotSet = -1,
GuardNotDefined = 0,
Guard1_32 = 1, // Guard interval is 1/32
Guard1_16, // Guard interval is 1/16
Guard1_8, // Guard interval is 1/8
Guard1_4, // Guard interval is 1/4
GuardMax,
}
/// <summary>
/// From TransmissionMode
/// </summary>
public enum TransmissionMode
{
ModeNotSet = -1,
ModeNotDefined = 0,
Mode2K = 1, // Transmission uses 1705 carriers (use a 2K FFT)
Mode8K, // Transmission uses 6817 carriers (use an 8K FFT)
Mode4K,
Mode2KInterleaved,
Mode4KInterleaved,
ModeMax,
}
/// <summary>
/// From ComponentStatus
/// </summary>
public enum ComponentStatus
{
Active,
Inactive,
Unavailable
}
/// <summary>
/// From ComponentCategory
/// </summary>
public enum ComponentCategory
{
NotSet = -1,
Other = 0,
Video,
Audio,
Text,
Data
}
/// <summary>
/// From MPEG2StreamType
/// </summary>
public enum MPEG2StreamType
{
BdaUninitializedMpeg2StreamType = -1,
Reserved1 = 0x00,
IsoIec11172_2_Video = 0x01,
IsoIec13818_2_Video = 0x02,
IsoIec11172_3_Audio = 0x03,
IsoIec13818_3_Audio = 0x04,
IsoIec13818_1_PrivateSection = 0x05,
IsoIec13818_1_Pes = 0x06,
IsoIec13522_Mheg = 0x07,
AnnexADsmCC = 0x08,
ItuTRecH222_1 = 0x09,
IsoIec13818_6_TypeA = 0x0a,
IsoIec13818_6_TypeB = 0x0b,
IsoIec13818_6_TypeC = 0x0c,
IsoIec13818_6_TypeD = 0x0d,
IsoIec13818_1_Auxiliary = 0x0e,
IsoIec13818_1_Reserved = 0x0f,
UserPrivate = 0x10,
IsoIecUserPrivate = 0x80,
DolbyAc3Audio = 0x81
}
/// <summary>
/// From ATSCComponentTypeFlags
/// </summary>
[Flags]
public enum ATSCComponentTypeFlags
{
None = 0x0,
ATSCCT_AC3 = 0x00000001
}
/// <summary>
/// From BDA_TEMPLATE_CONNECTION
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct BDATemplateConnection
{
public int FromNodeType;
public int FromNodePinType;
public int ToNodeType;
public int ToNodePinType;
}
/// <summary>
/// From BDA_Comp_Flags
/// </summary>
[Flags]
public enum BDACompFlags
{
NotDefined = 0x00000000, // BDACOMP_NOT_DEFINED
ExcludeTSFromTR = 0x00000001, // BDACOMP_EXCLUDE_TS_FROM_TR
IncludeLocatorInTR = 0x00000002, // BDACOMP_INCLUDE_LOCATOR_IN_TR
}
#endregion
}