forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamstream.cs
578 lines (469 loc) · 14.6 KB
/
amstream.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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
#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;
using System.Security;
#if !USING_NET11
using System.Runtime.InteropServices.ComTypes;
#endif
namespace DirectShowLib.MultimediaStreaming
{
#region Declarations
/// <summary>
/// From unnamed enum
/// </summary>
[Flags]
public enum AMMStream
{
None = 0x0,
AddDefaultRenderer = 0x1,
CreatePeer = 0x2,
StopIfNoSamples = 0x4,
NoStall = 0x8
}
/// <summary>
/// From unnamed enum
/// </summary>
[Flags]
public enum AMMMultiStream
{
None = 0x0,
NoGraphThread = 0x1
}
/// <summary>
/// From unnamed enum
/// </summary>
[Flags]
public enum AMOpenModes
{
RenderTypeMask = 0x3,
RenderToExisting = 0,
RenderAllStreams = 0x1,
NoRender = 0x2,
NoClock = 0x4,
Run = 0x8
}
#endregion
#region Interfaces
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("BEBE595D-9A6F-11D0-8FDE-00C04FD9189D"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAMMediaStream : IMediaStream
{
#region IMediaStream Methods
[PreserveSig]
new int GetMultiMediaStream(
[MarshalAs(UnmanagedType.Interface)] out IMultiMediaStream ppMultiMediaStream
);
[PreserveSig]
new int GetInformation(
out Guid pPurposeId,
out StreamType pType
);
[PreserveSig]
new int SetSameFormat(
[In, MarshalAs(UnmanagedType.Interface)] IMediaStream pStreamThatHasDesiredFormat,
[In] int dwFlags
);
[PreserveSig]
new int AllocateSample(
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IStreamSample ppSample
);
[PreserveSig]
new int CreateSharedSample(
[In, MarshalAs(UnmanagedType.Interface)] IStreamSample pExistingSample,
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IStreamSample ppNewSample
);
[PreserveSig]
new int SendEndOfStream(
int dwFlags
);
#endregion
[PreserveSig]
int Initialize(
[In, MarshalAs(UnmanagedType.IUnknown)] object pSourceObject,
[In] AMMStream dwFlags,
[In, MarshalAs(UnmanagedType.LPStruct)] Guid PurposeId,
[In] StreamType StreamType
);
[PreserveSig]
int SetState(
[In] FilterState State
);
[PreserveSig]
int JoinAMMultiMediaStream(
[In, MarshalAs(UnmanagedType.Interface)] IAMMultiMediaStream pAMMultiMediaStream
);
[PreserveSig]
int JoinFilter(
[In, MarshalAs(UnmanagedType.Interface)] IMediaStreamFilter pMediaStreamFilter
);
[PreserveSig]
int JoinFilterGraph(
[In, MarshalAs(UnmanagedType.Interface)] IFilterGraph pFilterGraph
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("BEBE595C-9A6F-11D0-8FDE-00C04FD9189D")]
public interface IAMMultiMediaStream : IMultiMediaStream
{
#region IMultiMediaStream Methods
[PreserveSig]
new int GetInformation(
out MMSSF pdwFlags,
out StreamType pStreamType
);
[PreserveSig]
new int GetMediaStream(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid idPurpose,
[MarshalAs(UnmanagedType.Interface)] out IMediaStream ppMediaStream
);
[PreserveSig]
new int EnumMediaStreams(
[In] int Index,
[MarshalAs(UnmanagedType.Interface)] out IMediaStream ppMediaStream
);
[PreserveSig]
new int GetState(
out StreamState pCurrentState
);
[PreserveSig]
new int SetState(
[In] StreamState NewState
);
[PreserveSig]
new int GetTime(
out long pCurrentTime
);
[PreserveSig]
new int GetDuration(
out long pDuration
);
[PreserveSig]
new int Seek(
[In] long SeekTime
);
[PreserveSig]
new int GetEndOfStreamEventHandle(
out IntPtr phEOS
);
#endregion
[PreserveSig]
int Initialize(
[In] StreamType StreamType,
[In] AMMMultiStream dwFlags,
[In, MarshalAs(UnmanagedType.Interface)] IGraphBuilder pFilterGraph
);
[PreserveSig]
int GetFilterGraph(
[MarshalAs(UnmanagedType.Interface)] out IGraphBuilder ppGraphBuilder
);
[PreserveSig]
int GetFilter(
[MarshalAs(UnmanagedType.Interface)] out IMediaStreamFilter ppFilter
);
[PreserveSig]
int AddMediaStream(
[In, MarshalAs(UnmanagedType.IUnknown)] object pStreamObject,
[In] DsGuid PurposeId,
[In] AMMStream dwFlags,
[Out] IMediaStream ppNewStream
);
[PreserveSig]
int OpenFile(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszFileName,
[In] AMOpenModes dwFlags
);
[PreserveSig]
int OpenMoniker(
#if USING_NET11
[In, MarshalAs(UnmanagedType.Interface)] UCOMIBindCtx pCtx,
[In, MarshalAs(UnmanagedType.Interface)] UCOMIMoniker pMoniker,
#else
[In, MarshalAs(UnmanagedType.Interface)] IBindCtx pCtx,
[In, MarshalAs(UnmanagedType.Interface)] IMoniker pMoniker,
#endif
[In] AMOpenModes dwFlags
);
[PreserveSig]
int Render(
[In] AMOpenModes dwFlags
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("AB6B4AFA-F6E4-11D0-900D-00C04FD9189D")]
public interface IAMMediaTypeStream : IMediaStream
{
#region IMediaStream Methods
[PreserveSig]
new int GetMultiMediaStream(
[MarshalAs(UnmanagedType.Interface)] out IMultiMediaStream ppMultiMediaStream
);
[PreserveSig]
new int GetInformation(
out Guid pPurposeId,
out StreamType pType
);
[PreserveSig]
new int SetSameFormat(
[In, MarshalAs(UnmanagedType.Interface)] IMediaStream pStreamThatHasDesiredFormat,
[In] int dwFlags
);
[PreserveSig]
new int AllocateSample(
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IStreamSample ppSample
);
[PreserveSig]
new int CreateSharedSample(
[In, MarshalAs(UnmanagedType.Interface)] IStreamSample pExistingSample,
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IStreamSample ppNewSample
);
[PreserveSig]
new int SendEndOfStream(
int dwFlags
);
#endregion
[PreserveSig]
int GetFormat(
[Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pMediaType,
[In] int dwFlags
);
[PreserveSig]
int SetFormat(
[In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pMediaType,
[In] int dwFlags
);
[PreserveSig]
int CreateSample(
[In] int lSampleSize,
[In] IntPtr pbBuffer,
[In] int dwFlags,
[In, MarshalAs(UnmanagedType.IUnknown)] object pUnkOuter,
[MarshalAs(UnmanagedType.Interface)] out IAMMediaTypeSample ppAMMediaTypeSample
);
[PreserveSig]
int GetStreamAllocatorRequirements(
out AllocatorProperties pProps
);
[PreserveSig]
int SetStreamAllocatorRequirements(
[In, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pProps
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("AB6B4AFB-F6E4-11D0-900D-00C04FD9189D")]
public interface IAMMediaTypeSample : IStreamSample
{
#region IStreamSample Methods
[PreserveSig]
new int GetMediaStream(
[MarshalAs(UnmanagedType.Interface)] out IMediaStream ppMediaStream
);
[PreserveSig]
new int GetSampleTimes(
out long pStartTime,
out long pEndTime,
out long pCurrentTime
);
[PreserveSig]
new int SetSampleTimes(
[In] DsLong pStartTime,
[In] DsLong pEndTime
);
[PreserveSig]
new int Update(
[In] SSUpdate dwFlags,
[In] IntPtr hEvent,
[In] IntPtr pfnAPC,
[In] IntPtr dwAPCData
);
[PreserveSig]
new int CompletionStatus(
[In] CompletionStatusFlags dwFlags,
[In] int dwMilliseconds
);
#endregion
[PreserveSig]
int SetPointer(
[In] IntPtr pBuffer,
[In] int lSize
);
[PreserveSig]
int GetPointer(
[Out] out IntPtr ppBuffer
);
[PreserveSig]
int GetSize();
[PreserveSig]
int GetTime(
out long pTimeStart,
out long pTimeEnd
);
[PreserveSig]
int SetTime(
[In] DsLong pTimeStart,
[In] DsLong pTimeEnd
);
[PreserveSig]
int IsSyncPoint();
[PreserveSig]
int SetSyncPoint(
[In, MarshalAs(UnmanagedType.Bool)] bool IsSyncPoint
);
[PreserveSig]
int IsPreroll();
[PreserveSig]
int SetPreroll(
[In, MarshalAs(UnmanagedType.Bool)] bool IsPreroll
);
[PreserveSig]
int GetActualDataLength();
[PreserveSig]
int SetActualDataLength(
int Size
);
[PreserveSig]
int GetMediaType(
out AMMediaType ppMediaType
);
[PreserveSig]
int SetMediaType(
[In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pMediaType
);
[PreserveSig]
int IsDiscontinuity();
[PreserveSig]
int SetDiscontinuity(
[In, MarshalAs(UnmanagedType.Bool)] bool Discontinuity
);
[PreserveSig]
int GetMediaTime(
out long pTimeStart,
out long pTimeEnd
);
[PreserveSig]
int SetMediaTime(
[In] DsLong pTimeStart,
[In] DsLong pTimeEnd
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("BEBE595E-9A6F-11D0-8FDE-00C04FD9189D"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IMediaStreamFilter : IBaseFilter
{
#region IPersist Methods
[PreserveSig]
new int GetClassID(
out Guid pClassID
);
#endregion
#region IMediaFilter Methods
[PreserveSig]
new int Stop();
[PreserveSig]
new int Pause();
[PreserveSig]
new int Run(
[In] long tStart
);
[PreserveSig]
new int GetState(
[In] int dwMilliSecsTimeout,
out FilterState State
);
[PreserveSig]
new int SetSyncSource(
[In, MarshalAs(UnmanagedType.Interface)] IReferenceClock pClock
);
[PreserveSig]
new int GetSyncSource(
[MarshalAs(UnmanagedType.Interface)] out IReferenceClock pClock
);
#endregion
#region IBaseFilter Methods
[PreserveSig]
new int EnumPins(
[MarshalAs(UnmanagedType.Interface)] out IEnumPins ppEnum
);
[PreserveSig]
new int FindPin(
[In, MarshalAs(UnmanagedType.LPWStr)] string Id,
[MarshalAs(UnmanagedType.Interface)] out IPin ppPin
);
[PreserveSig]
new int QueryFilterInfo(
out FilterInfo pInfo
);
[PreserveSig]
new int JoinFilterGraph(
[In, MarshalAs(UnmanagedType.Interface)] IFilterGraph pGraph,
[In, MarshalAs(UnmanagedType.LPWStr)] string pName
);
[PreserveSig]
new int QueryVendorInfo(
[MarshalAs(UnmanagedType.LPWStr)] out string pVendorInfo
);
#endregion
[PreserveSig]
int AddMediaStream(
[In, MarshalAs(UnmanagedType.Interface)] IAMMediaStream pAMMediaStream
);
[PreserveSig]
int GetMediaStream(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid idPurpose,
[MarshalAs(UnmanagedType.Interface)] out IMediaStream ppMediaStream
);
[PreserveSig]
int EnumMediaStreams(
[In] int Index,
[MarshalAs(UnmanagedType.Interface)] out IMediaStream ppMediaStream
);
[PreserveSig]
int SupportSeeking(
[In, MarshalAs(UnmanagedType.Bool)] bool bRenderer
);
[PreserveSig]
int ReferenceTimeToStreamTime(
[In, Out] ref long pTime
);
[PreserveSig]
int GetCurrentStreamTime(
out long pCurrentStreamTime
);
[PreserveSig]
int WaitUntil(
[In] long WaitStreamTime
);
[PreserveSig]
int Flush(
[In, MarshalAs(UnmanagedType.Bool)] bool bCancelEOS
);
[PreserveSig]
int EndOfStream();
}
#endregion
}