-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSbe.cs
1068 lines (874 loc) · 33.1 KB
/
Sbe.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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#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.Text;
namespace DirectShowLib.SBE
{
#region Declarations
/// <summary>
/// From unnamed structure
/// </summary>
public enum RecordingType
{
Content = 0, // no post-recording or overlapped
Reference // allows post-recording & overlapped
}
/// <summary>
/// From STREAMBUFFER_ATTR_DATATYPE
/// </summary>
public enum StreamBufferAttrDataType
{
DWord = 0,
String = 1,
Binary = 2,
Bool = 3,
QWord = 4,
Word = 5,
Guid = 6
}
/// <summary>
/// From unnamed structure
/// </summary>
public enum StreamBufferEventCode
{
TimeHole = 0x0326, // STREAMBUFFER_EC_TIMEHOLE
StaleDataRead, // STREAMBUFFER_EC_STALE_DATA_READ
StaleFileDeleted, // STREAMBUFFER_EC_STALE_FILE_DELETED
ContentBecomingStale, // STREAMBUFFER_EC_CONTENT_BECOMING_STALE
WriteFailure, // STREAMBUFFER_EC_WRITE_FAILURE
ReadFailure, // STREAMBUFFER_EC_READ_FAILURE
RateChanged, // STREAMBUFFER_EC_RATE_CHANGED
PrimaryAudio, // STREAMBUFFER_EC_PRIMARY_AUDIO
// In Windows 7, Microsoft *RENUMBERED* the elements of the enum. So, if
// you are using Vista, 0x32b is STREAMBUFFER_EC_READ_FAILURE. In W7, it
// is STREAMBUFFER_EC_WRITE_FAILURE_CLEAR. This also affects RateChanged,
// and PrimaryAudio. If you are using a "case" statement to process events,
// you probably need entirely separate case statements for Vista/W7.
WriteFailureClear_W7 = 0x032b, // STREAMBUFFER_EC_WRITE_FAILURE_CLEAR
ReadFailure_W7,
RateChanged_W7,
PrimaryAudio_W7,
RateChangingForSetPositions, // STREAMBUFFER_EC_RATE_CHANGING_FOR_SETPOSITIONS
SetPositionsEventsDone // STREAMBUFFER_EC_SETPOSITIONS_EVENTS_DONE
}
/// <summary>
/// From g_wszStreamBufferRecording* static const WCHAR
/// </summary>
sealed public class StreamBufferRecording
{
private StreamBufferRecording()
{
}
////////////////////////////////////////////////////////////////
//
// List of pre-defined attributes
//
public readonly string Duration = "Duration";
public readonly string Bitrate = "Bitrate";
public readonly string Seekable = "Seekable";
public readonly string Stridable = "Stridable";
public readonly string Broadcast = "Broadcast";
public readonly string Protected = "Is_Protected";
public readonly string Trusted = "Is_Trusted";
public readonly string Signature_Name = "Signature_Name";
public readonly string HasAudio = "HasAudio";
public readonly string HasImage = "HasImage";
public readonly string HasScript = "HasScript";
public readonly string HasVideo = "HasVideo";
public readonly string CurrentBitrate = "CurrentBitrate";
public readonly string OptimalBitrate = "OptimalBitrate";
public readonly string HasAttachedImages = "HasAttachedImages";
public readonly string SkipBackward = "Can_Skip_Backward";
public readonly string SkipForward = "Can_Skip_Forward";
public readonly string NumberOfFrames = "NumberOfFrames";
public readonly string FileSize = "FileSize";
public readonly string HasArbitraryDataStream = "HasArbitraryDataStream";
public readonly string HasFileTransferStream = "HasFileTransferStream";
////////////////////////////////////////////////////////////////
//
// The content description object supports 5 basic attributes.
//
public readonly string Title = "Title";
public readonly string Author = "Author";
public readonly string Description = "Description";
public readonly string Rating = "Rating";
public readonly string Copyright = "Copyright";
////////////////////////////////////////////////////////////////
//
// These attributes are used to configure DRM using IWMDRMWriter::SetDRMAttribute.
//
public readonly string Use_DRM = "Use_DRM";
public readonly string DRM_Flags = "DRM_Flags";
public readonly string DRM_Level = "DRM_Level";
////////////////////////////////////////////////////////////////
//
// These are the additional attributes defined in the WM attribute
// namespace that give information about the content.
//
public readonly string AlbumTitle = "WM/AlbumTitle";
public readonly string Track = "WM/Track";
public readonly string PromotionURL = "WM/PromotionURL";
public readonly string AlbumCoverURL = "WM/AlbumCoverURL";
public readonly string Genre = "WM/Genre";
public readonly string Year = "WM/Year";
public readonly string GenreID = "WM/GenreID";
public readonly string MCDI = "WM/MCDI";
public readonly string Composer = "WM/Composer";
public readonly string Lyrics = "WM/Lyrics";
public readonly string TrackNumber = "WM/TrackNumber";
public readonly string ToolName = "WM/ToolName";
public readonly string ToolVersion = "WM/ToolVersion";
public readonly string IsVBR = "IsVBR";
public readonly string AlbumArtist = "WM/AlbumArtist";
////////////////////////////////////////////////////////////////
//
// These optional attributes may be used to give information
// about the branding of the content.
//
public readonly string BannerImageType = "BannerImageType";
public readonly string BannerImageData = "BannerImageData";
public readonly string BannerImageURL = "BannerImageURL";
public readonly string CopyrightURL = "CopyrightURL";
////////////////////////////////////////////////////////////////
//
// Optional attributes, used to give information
// about video stream properties.
//
public readonly string AspectRatioX = "AspectRatioX";
public readonly string AspectRatioY = "AspectRatioY";
////////////////////////////////////////////////////////////////
//
// The NSC file supports the following attributes.
//
public readonly string NSCName = "NSC_Name";
public readonly string NSCAddress = "NSC_Address";
public readonly string NSCPhone = "NSC_Phone";
public readonly string NSCEmail = "NSC_Email";
public readonly string NSCDescription = "NSC_Description";
}
/// <summary>
/// From STREAMBUFFER_ATTRIBUTE
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct StreamBufferAttribute
{
[MarshalAs(UnmanagedType.LPWStr)] public string pszName;
public StreamBufferAttrDataType StreamBufferAttributeType;
public IntPtr pbAttribute; // BYTE *
public short cbLength;
}
/// <summary>
/// From SBE_PIN_DATA
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct SBEPinData
{
public long cDataBytes; // total sample payload bytes
public long cSamplesProcessed; // samples processed
public long cDiscontinuities; // number of discontinuities
public long cSyncPoints; // number of syncpoints
public long cTimestamps; // number of timestamps
}
public sealed class SBEEvent
{
/// <summary> EVENTID_SBE2RecControlStarted </summary>
public static readonly Guid RecControlStarted = new Guid(0x8966a89e, 0xf83e, 0x4c0e, 0xbc, 0x3b, 0xbf, 0xa7, 0x64, 0x9e, 0x4, 0xcb);
/// <summary> EVENTID_SBE2RecControlStopped </summary>
public static readonly Guid RecControlStopped = new Guid(0x454b1ec8, 0xc9b, 0x4caa, 0xb1, 0xa1, 0x1e, 0x7a, 0x26, 0x66, 0xf6, 0xc3);
/// <summary> SBE2_STREAM_DESC_EVENT </summary>
public static readonly Guid StreamDescEvent = new Guid(0x2313a4ed, 0xbf2d, 0x454f, 0xad, 0x8a, 0xd9, 0x5b, 0xa7, 0xf9, 0x1f, 0xee);
/// <summary> SBE2_V1_STREAMS_CREATION_EVENT </summary>
public static readonly Guid V1StreamsCreationEvent = new Guid(0xfcf09, 0x97f5, 0x46ac, 0x97, 0x69, 0x7a, 0x83, 0xb3, 0x53, 0x84, 0xfb);
/// <summary> SBE2_V2_STREAMS_CREATION_EVENT </summary>
public static readonly Guid V2StreamsCreationEvent = new Guid(0xa72530a3, 0x344, 0x4cab, 0xa2, 0xd0, 0xfe, 0x93, 0x7d, 0xbd, 0xca, 0xb3);
}
/// <summary>
/// From CROSSBAR_DEFAULT_FLAGS
/// </summary>
[Flags]
public enum CrossbarDefaultFlags
{
None = 0x0,
Profile = 0x0000001,
Streams = 0x0000002
}
/// <summary>
/// From SBE2_STREAM_DESC
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public class SBE2_StreamDesc
{
public int Version;
public int StreamId;
public int Default;
public int Reserved;
}
/// <summary>
/// From DVR_STREAM_DESC
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public class DVRStreamDesc
{
public int Version;
public int StreamId;
public bool Default;
public bool Creation;
public int Reserved;
public Guid guidSubMediaType;
public Guid guidFormatType;
public AMMediaType MediaType;
}
#endregion
#region Interfaces
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("7E2D2A1E-7192-4bd7-80C1-061FD1D10402"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferConfigure3 : IStreamBufferConfigure2
{
#region IStreamBufferConfigure
[PreserveSig]
new int SetDirectory([In, MarshalAs(UnmanagedType.LPWStr)] string pszDirectoryName);
[PreserveSig]
new int GetDirectory([Out, MarshalAs(UnmanagedType.LPWStr)] out string pszDirectoryName);
[PreserveSig]
new int SetBackingFileCount(
[In] int dwMin,
[In] int dwMax
);
[PreserveSig]
new int GetBackingFileCount(
[Out] out int dwMin,
[Out] out int dwMax
);
[PreserveSig]
new int SetBackingFileDuration([In] int dwSeconds);
[PreserveSig]
new int GetBackingFileDuration([Out] out int pdwSeconds);
#endregion
#region IStreamBufferConfigure2
[PreserveSig]
new int SetMultiplexedPacketSize([In] int cbBytesPerPacket);
[PreserveSig]
new int GetMultiplexedPacketSize([Out] out int pcbBytesPerPacket);
[PreserveSig]
new int SetFFTransitionRates(
[In] int dwMaxFullFrameRate,
[In] int dwMaxNonSkippingRate
);
[PreserveSig]
new int GetFFTransitionRates(
[Out] out int pdwMaxFullFrameRate,
[Out] out int pdwMaxNonSkippingRate
);
#endregion
[PreserveSig]
int SetStartRecConfig([In, MarshalAs(UnmanagedType.Bool)] bool fStartStopsCur);
[PreserveSig]
int GetStartRecConfig([Out, MarshalAs(UnmanagedType.Bool)] out bool pfStartStopsCur);
[PreserveSig]
int SetNamespace([In, MarshalAs(UnmanagedType.LPWStr)] string pszNamespace);
[PreserveSig]
int GetNamespace([Out, MarshalAs(UnmanagedType.LPWStr)] out string ppszNamespace);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("9ce50f2d-6ba7-40fb-a034-50b1a674ec78"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferInitialize
{
[PreserveSig]
int SetHKEY([In] IntPtr hkeyRoot); // HKEY
[PreserveSig]
int SetSIDs(
[In] int cSIDs,
[In, MarshalAs(UnmanagedType.LPArray)] IntPtr[] ppSID // PSID *
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("afd1f242-7efd-45ee-ba4e-407a25c9a77a"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferSink
{
[PreserveSig]
int LockProfile([In, MarshalAs(UnmanagedType.LPWStr)] string pszStreamBufferFilename);
[PreserveSig]
int CreateRecorder(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszFilename,
[In] RecordingType dwRecordType,
[Out, MarshalAs(UnmanagedType.IUnknown)] out object pRecordingIUnknown
);
[PreserveSig]
int IsProfileLocked();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("DB94A660-F4FB-4bfa-BCC6-FE159A4EEA93"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferSink2 : IStreamBufferSink
{
#region IStreamBufferSink Methods
[PreserveSig]
new int LockProfile([In, MarshalAs(UnmanagedType.LPWStr)] string pszStreamBufferFilename);
[PreserveSig]
new int CreateRecorder(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszFilename,
[In] RecordingType dwRecordType,
[Out, MarshalAs(UnmanagedType.IUnknown)] out object pRecordingIUnknown
);
[PreserveSig]
new int IsProfileLocked();
#endregion
[PreserveSig]
int UnlockProfile();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("974723f2-887a-4452-9366-2cff3057bc8f"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferSink3 : IStreamBufferSink2
{
#region IStreamBufferSink Methods
[PreserveSig]
new int LockProfile([In, MarshalAs(UnmanagedType.LPWStr)] string pszStreamBufferFilename);
[PreserveSig]
new int CreateRecorder(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszFilename,
[In] RecordingType dwRecordType,
[Out, MarshalAs(UnmanagedType.IUnknown)] out object pRecordingIUnknown
);
[PreserveSig]
new int IsProfileLocked();
#endregion
#region IStreamBufferSink2
[PreserveSig]
new int UnlockProfile();
#endregion
[PreserveSig]
int SetAvailableFilter([In, Out] ref long prtMin);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("1c5bd776-6ced-4f44-8164-5eab0e98db12"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferSource
{
[PreserveSig]
int SetStreamSink([In] IStreamBufferSink pIStreamBufferSink);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("ba9b6c99-f3c7-4ff2-92db-cfdd4851bf31"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferRecordControl
{
[PreserveSig]
int Start([In, Out] ref long prtStart);
[PreserveSig]
int Stop([In] long rtStop);
[PreserveSig]
int GetRecordingStatus(
[Out] out int phResult,
[Out, MarshalAs(UnmanagedType.Bool)] out bool pbStarted,
[Out, MarshalAs(UnmanagedType.Bool)] out bool pbStopped
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("9E259A9B-8815-42ae-B09F-221970B154FD"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferRecComp
{
[PreserveSig]
int Initialize(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszTargetFilename,
[In, MarshalAs(UnmanagedType.LPWStr)] string pszSBRecProfileRef
);
[PreserveSig]
int Append([In, MarshalAs(UnmanagedType.LPWStr)] string pszSBRecording);
[PreserveSig]
int AppendEx(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszSBRecording,
[In] long rtStart,
[In] long rtStop
);
[PreserveSig]
int GetCurrentLength([Out] out int pcSeconds);
[PreserveSig]
int Close();
[PreserveSig]
int Cancel();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("16CA4E03-FE69-4705-BD41-5B7DFC0C95F3"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferRecordingAttribute
{
[PreserveSig]
int SetAttribute(
[In] int ulReserved,
[In, MarshalAs(UnmanagedType.LPWStr)] string pszAttributeName,
[In] StreamBufferAttrDataType StreamBufferAttributeType,
[In] IntPtr pbAttribute, // BYTE *
[In] short cbAttributeLength
);
[PreserveSig]
int GetAttributeCount(
[In] int ulReserved,
[Out] out short pcAttributes
);
[PreserveSig]
int GetAttributeByName(
[In, MarshalAs(UnmanagedType.LPWStr)] string pszAttributeName,
[In] int pulReserved,
[Out] out StreamBufferAttrDataType pStreamBufferAttributeType,
[In, Out] IntPtr pbAttribute, // BYTE *
[In, Out] ref short pcbLength
);
[PreserveSig]
int GetAttributeByIndex(
[In] short wIndex,
[In] int pulReserved,
[Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszAttributeName,
[In, Out] ref short pcchNameLength,
[Out] out StreamBufferAttrDataType pStreamBufferAttributeType,
IntPtr pbAttribute, // BYTE *
[In, Out] ref short pcbLength
);
int EnumAttributes([Out] out IEnumStreamBufferRecordingAttrib ppIEnumStreamBufferAttrib);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("C18A9162-1E82-4142-8C73-5690FA62FE33"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IEnumStreamBufferRecordingAttrib
{
[PreserveSig]
int Next(
[In] int cRequest,
[Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] StreamBufferAttribute[] pStreamBufferAttribute,
[In] IntPtr pcReceived
);
[PreserveSig]
int Skip([In] int cRecords);
[PreserveSig]
int Reset();
[PreserveSig]
int Clone([Out] out IEnumStreamBufferRecordingAttrib ppIEnumStreamBufferAttrib);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("ce14dfae-4098-4af7-bbf7-d6511f835414"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferConfigure
{
[PreserveSig]
int SetDirectory([In, MarshalAs(UnmanagedType.LPWStr)] string pszDirectoryName);
[PreserveSig]
int GetDirectory([Out, MarshalAs(UnmanagedType.LPWStr)] out string pszDirectoryName);
[PreserveSig]
int SetBackingFileCount(
[In] int dwMin,
[In] int dwMax
);
[PreserveSig]
int GetBackingFileCount(
[Out] out int dwMin,
[Out] out int dwMax
);
[PreserveSig]
int SetBackingFileDuration([In] int dwSeconds);
[PreserveSig]
int GetBackingFileDuration([Out] out int pdwSeconds);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("53E037BF-3992-4282-AE34-2487B4DAE06B"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferConfigure2 : IStreamBufferConfigure
{
#region IStreamBufferConfigure
[PreserveSig]
new int SetDirectory([In, MarshalAs(UnmanagedType.LPWStr)] string pszDirectoryName);
[PreserveSig]
new int GetDirectory([Out, MarshalAs(UnmanagedType.LPWStr)] out string pszDirectoryName);
[PreserveSig]
new int SetBackingFileCount(
[In] int dwMin,
[In] int dwMax
);
[PreserveSig]
new int GetBackingFileCount(
[Out] out int dwMin,
[Out] out int dwMax
);
[PreserveSig]
new int SetBackingFileDuration([In] int dwSeconds);
[PreserveSig]
new int GetBackingFileDuration([Out] out int pdwSeconds);
#endregion
[PreserveSig]
int SetMultiplexedPacketSize([In] int cbBytesPerPacket);
[PreserveSig]
int GetMultiplexedPacketSize([Out] out int pcbBytesPerPacket);
[PreserveSig]
int SetFFTransitionRates(
[In] int dwMaxFullFrameRate,
[In] int dwMaxNonSkippingRate
);
[PreserveSig]
int GetFFTransitionRates(
[Out] out int pdwMaxFullFrameRate,
[Out] out int pdwMaxNonSkippingRate
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("f61f5c26-863d-4afa-b0ba-2f81dc978596"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferMediaSeeking : IMediaSeeking
{
#region IMediaSeeking Methods
[PreserveSig]
new int GetCapabilities([Out] out AMSeekingSeekingCapabilities pCapabilities);
[PreserveSig]
new int CheckCapabilities([In, Out] ref AMSeekingSeekingCapabilities pCapabilities);
[PreserveSig]
new int IsFormatSupported([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
[PreserveSig]
new int QueryPreferredFormat([Out] out Guid pFormat);
[PreserveSig]
new int GetTimeFormat([Out] out Guid pFormat);
[PreserveSig]
new int IsUsingTimeFormat([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
[PreserveSig]
new int SetTimeFormat([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
[PreserveSig]
new int GetDuration([Out] out long pDuration);
[PreserveSig]
new int GetStopPosition([Out] out long pStop);
[PreserveSig]
new int GetCurrentPosition([Out] out long pCurrent);
[PreserveSig]
new int ConvertTimeFormat(
[Out] out long pTarget,
[In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pTargetFormat,
[In] long Source,
[In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pSourceFormat
);
[PreserveSig]
new int SetPositions(
[In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pCurrent,
[In] AMSeekingSeekingFlags dwCurrentFlags,
[In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pStop,
[In] AMSeekingSeekingFlags dwStopFlags
);
[PreserveSig]
new int GetPositions(
[Out] out long pCurrent,
[Out] out long pStop
);
[PreserveSig]
new int GetAvailable(
[Out] out long pEarliest,
[Out] out long pLatest
);
[PreserveSig]
new int SetRate([In] double dRate);
[PreserveSig]
new int GetRate([Out] out double pdRate);
[PreserveSig]
new int GetPreroll([Out] out long pllPreroll);
#endregion
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("3a439ab0-155f-470a-86a6-9ea54afd6eaf"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferMediaSeeking2 : IStreamBufferMediaSeeking
{
#region IMediaSeeking
[PreserveSig]
new int GetCapabilities([Out] out AMSeekingSeekingCapabilities pCapabilities);
[PreserveSig]
new int CheckCapabilities([In, Out] ref AMSeekingSeekingCapabilities pCapabilities);
[PreserveSig]
new int IsFormatSupported([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
[PreserveSig]
new int QueryPreferredFormat([Out] out Guid pFormat);
[PreserveSig]
new int GetTimeFormat([Out] out Guid pFormat);
[PreserveSig]
new int IsUsingTimeFormat([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
[PreserveSig]
new int SetTimeFormat([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
[PreserveSig]
new int GetDuration([Out] out long pDuration);
[PreserveSig]
new int GetStopPosition([Out] out long pStop);
[PreserveSig]
new int GetCurrentPosition([Out] out long pCurrent);
[PreserveSig]
new int ConvertTimeFormat(
[Out] out long pTarget,
[In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pTargetFormat,
[In] long Source,
[In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pSourceFormat
);
[PreserveSig]
new int SetPositions(
[In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pCurrent,
[In] AMSeekingSeekingFlags dwCurrentFlags,
[In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pStop,
[In] AMSeekingSeekingFlags dwStopFlags
);
[PreserveSig]
new int GetPositions(
[Out] out long pCurrent,
[Out] out long pStop
);
[PreserveSig]
new int GetAvailable(
[Out] out long pEarliest,
[Out] out long pLatest
);
[PreserveSig]
new int SetRate([In] double dRate);
[PreserveSig]
new int GetRate([Out] out double pdRate);
[PreserveSig]
new int GetPreroll([Out] out long pllPreroll);
#endregion
[PreserveSig]
int SetRateEx(
[In] double dRate,
[In] int dwFramesPerSec
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("9D2A2563-31AB-402e-9A6B-ADB903489440"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IStreamBufferDataCounters
{
[PreserveSig]
int GetData([Out] out SBEPinData pPinData);
[PreserveSig]
int ResetData();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("caede759-b6b1-11db-a578-0018f3fa24c6"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2GlobalEvent
{
[PreserveSig]
int GetEvent(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid idEvt,
int param1,
int param2,
int param3,
int param4,
[MarshalAs(UnmanagedType.Bool)] out bool pSpanning,
ref int pcb,
[Out] IntPtr pb
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("6D8309BF-00FE-4506-8B03-F8C65B5C9B39"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2GlobalEvent2 : ISBE2GlobalEvent
{
#region ISBE2GlobalEvent methods
[PreserveSig]
new int GetEvent(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid idEvt,
int param1,
int param2,
int param3,
int param4,
[Out, MarshalAs(UnmanagedType.Bool)] out bool pSpanning,
ref int pcb,
[Out] IntPtr pb
);
#endregion
[PreserveSig]
int GetEventEx(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid idEvt,
int param1,
int param2,
int param3,
int param4,
[MarshalAs(UnmanagedType.Bool)] out bool pSpanning,
ref int pcb,
[Out] IntPtr pb,
out long pStreamTime
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("caede760-b6b1-11db-a578-0018f3fa24c6"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2SpanningEvent
{
[PreserveSig]
int GetEvent(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid idEvt,
int streamId,
ref int pcb,
IntPtr pb
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("547b6d26-3226-487e-8253-8aa168749434"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2Crossbar
{
[PreserveSig]
int EnableDefaultMode(
CrossbarDefaultFlags DefaultFlags
);
[PreserveSig]
int GetInitialProfile(
out ISBE2MediaTypeProfile ppProfile
);
[PreserveSig]
int SetOutputProfile(
ISBE2MediaTypeProfile pProfile,
ref int pcOutputPins,
[Out, MarshalAs(UnmanagedType.LPArray)] IPin[] ppOutputPins
);
[PreserveSig]
int EnumStreams(
out ISBE2EnumStream ppStreams
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("667c7745-85b1-4c55-ae55-4e25056159fc"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2StreamMap
{
[PreserveSig]
int MapStream(
int Stream
);
[PreserveSig]
int UnmapStream(
int Stream
);
[PreserveSig]
int EnumMappedStreams(
out ISBE2EnumStream ppStreams
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("f7611092-9fbc-46ec-a7c7-548ea78b71a4"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2EnumStream
{
[PreserveSig]
int Next(
int cRequest,
[In, Out, MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(SDMarshaler))] SBE2_StreamDesc[] pStreamDesc,
IntPtr pcReceived
);
[PreserveSig]
int Skip(
int cRecords
);
[PreserveSig]
int Reset();
[PreserveSig]
int Clone(
out ISBE2EnumStream ppIEnumStream
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("f238267d-4671-40d7-997e-25dc32cfed2a"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2MediaTypeProfile
{
[PreserveSig]
int GetStreamCount(
out int pCount
);
[PreserveSig]
int GetStream(
int Index,
out AMMediaType ppMediaType
);
[PreserveSig]
int AddStream(
[In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pMediaType
);
[PreserveSig]
int DeleteStream(
int Index
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("3E2BF5A5-4F96-4899-A1A3-75E8BE9A5AC0"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISBE2FileScan
{
[PreserveSig]
int RepairFile(
[In, MarshalAs(UnmanagedType.LPWStr)] string filename
);
}
#endregion
internal class SDMarshaler : ICustomMarshaler