-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathamvideo.cs
351 lines (261 loc) · 8.7 KB
/
amvideo.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
#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.Drawing;
using System.Runtime.InteropServices;
namespace DirectShowLib
{
#region Declarations
#if ALLOW_UNTESTED_INTERFACES
/// <summary>
/// From AMDDS_* defines
/// </summary>
[Flags]
public enum DirectDrawSwitches
{
None = 0x00,
DCIPS = 0x01,
PS = 0x02,
RGBOVR = 0x04,
YUVOVR = 0x08,
RGBOFF = 0x10,
YUVOFF = 0x20,
RGBFLP = 0x40,
YUVFLP = 0x80,
All = 0xFF,
YUV = (YUVOFF | YUVOVR | YUVFLP),
RGB = (RGBOFF | RGBOVR | RGBFLP),
Primary = (DCIPS | PS)
}
/// <summary>
/// From AM_PROPERTY_FRAMESTEP
/// </summary>
public enum PropertyFrameStep
{
Step = 0x01,
Cancel = 0x02,
CanStep = 0x03,
CanStepMultiple = 0x04
}
/// <summary>
/// From AM_FRAMESTEP_STEP
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct FrameStepStep
{
public int dwFramesToStep;
}
/// <summary>
/// From MPEG1VIDEOINFO
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct MPEG1VideoInfo
{
public VideoInfoHeader hdr;
public int dwStartTimeCode;
public int cbSequenceHeader;
public byte bSequenceHeader;
}
/// <summary>
/// From ANALOGVIDEOINFO
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct AnalogVideoInfo
{
public Rectangle rcSource;
public Rectangle rcTarget;
public int dwActiveWidth;
public int dwActiveHeight;
public long AvgTimePerFrame;
}
#endif
#endregion
#region Interfaces
#if ALLOW_UNTESTED_INTERFACES
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("36d39eb0-dd75-11ce-bf0e-00aa0055595a"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IDirectDrawVideo
{
[PreserveSig]
int GetSwitches(out int pSwitches);
[PreserveSig]
int SetSwitches(int Switches);
[PreserveSig]
int GetCaps(out IntPtr pCaps); // DDCAPS
[PreserveSig]
int GetEmulatedCaps(out IntPtr pCaps); // DDCAPS
[PreserveSig]
int GetSurfaceDesc(out IntPtr pSurfaceDesc); // DDSURFACEDESC
[PreserveSig]
int GetFourCCCodes(out int pCount,out int pCodes);
[PreserveSig]
int SetDirectDraw(IntPtr pDirectDraw); // LPDIRECTDRAW
[PreserveSig]
int GetDirectDraw(out IntPtr ppDirectDraw); // LPDIRECTDRAW
[PreserveSig]
int GetSurfaceType(out DirectDrawSwitches pSurfaceType);
[PreserveSig]
int SetDefault();
[PreserveSig]
int UseScanLine(int UseScanLine);
[PreserveSig]
int CanUseScanLine(out int UseScanLine);
[PreserveSig]
int UseOverlayStretch(int UseOverlayStretch);
[PreserveSig]
int CanUseOverlayStretch(out int UseOverlayStretch);
[PreserveSig]
int UseWhenFullScreen(int UseWhenFullScreen);
[PreserveSig]
int WillUseFullScreen(out int UseWhenFullScreen);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("dd1d7110-7836-11cf-bf47-00aa0055595a"),
Obsolete("This interface has been deprecated.", false),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IFullScreenVideo
{
[PreserveSig]
int CountModes(out int pModes);
[PreserveSig]
int GetModeInfo(int Mode,out int pWidth,out int pHeight,out int pDepth);
[PreserveSig]
int GetCurrentMode(out int pMode);
[PreserveSig]
int IsModeAvailable(int Mode);
[PreserveSig]
int IsModeEnabled(int Mode);
[PreserveSig]
int SetEnabled(int Mode,int bEnabled);
[PreserveSig]
int GetClipFactor(out int pClipFactor);
[PreserveSig]
int SetClipFactor(int ClipFactor);
[PreserveSig]
int SetMessageDrain(IntPtr hwnd);
[PreserveSig]
int GetMessageDrain(out IntPtr hwnd);
[PreserveSig]
int SetMonitor(int Monitor);
[PreserveSig]
int GetMonitor(out int Monitor);
[PreserveSig]
int HideOnDeactivate(int Hide);
[PreserveSig]
int IsHideOnDeactivate();
[PreserveSig]
int SetCaption([MarshalAs(UnmanagedType.BStr)] string strCaption);
[PreserveSig]
int GetCaption([MarshalAs(UnmanagedType.BStr)] out string pstrCaption);
[PreserveSig]
int SetDefault();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("53479470-f1dd-11cf-bc42-00aa00ac74f6"),
Obsolete("This interface has been deprecated.", false),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IFullScreenVideoEx : IFullScreenVideo
{
#region IFullScreenVideo methods
[PreserveSig]
new int CountModes(out int pModes);
[PreserveSig]
new int GetModeInfo(int Mode, out int pWidth, out int pHeight, out int pDepth);
[PreserveSig]
new int GetCurrentMode(out int pMode);
[PreserveSig]
new int IsModeAvailable(int Mode);
[PreserveSig]
new int IsModeEnabled(int Mode);
[PreserveSig]
new int SetEnabled(int Mode, int bEnabled);
[PreserveSig]
new int GetClipFactor(out int pClipFactor);
[PreserveSig]
new int SetClipFactor(int ClipFactor);
[PreserveSig]
new int SetMessageDrain(IntPtr hwnd);
[PreserveSig]
new int GetMessageDrain(out IntPtr hwnd);
[PreserveSig]
new int SetMonitor(int Monitor);
[PreserveSig]
new int GetMonitor(out int Monitor);
[PreserveSig]
new int HideOnDeactivate(int Hide);
[PreserveSig]
new int IsHideOnDeactivate();
[PreserveSig]
new int SetCaption([MarshalAs(UnmanagedType.BStr)] string strCaption);
[PreserveSig]
new int GetCaption([MarshalAs(UnmanagedType.BStr)] out string pstrCaption);
[PreserveSig]
new int SetDefault();
#endregion
[PreserveSig]
int SetAcceleratorTable(IntPtr hwnd, IntPtr hAccel); // HACCEL
[PreserveSig]
int GetAcceleratorTable(out IntPtr phwnd, out IntPtr phAccel); // HACCEL
[PreserveSig]
int KeepPixelAspectRatio(int KeepAspect);
[PreserveSig]
int IsKeepPixelAspectRatio(out int pKeepAspect);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("61ded640-e912-11ce-a099-00aa00479a58"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IBaseVideoMixer
{
[PreserveSig]
int SetLeadPin(int iPin);
[PreserveSig]
int GetLeadPin(out int piPin);
[PreserveSig]
int GetInputPinCount(out int piPinCount);
[PreserveSig]
int IsUsingClock(out int pbValue);
[PreserveSig]
int SetUsingClock(int bValue);
[PreserveSig]
int GetClockPeriod(out int pbValue);
[PreserveSig]
int SetClockPeriod(int bValue);
}
#endif
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("1bd0ecb0-f8e2-11ce-aac6-0020af0b99a3"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IQualProp
{
[PreserveSig]
int get_FramesDroppedInRenderer(out int pcFrames);
[PreserveSig]
int get_FramesDrawn(out int pcFramesDrawn);
[PreserveSig]
int get_AvgFrameRate(out int piAvgFrameRate);
[PreserveSig]
int get_Jitter(out int iJitter);
[PreserveSig]
int get_AvgSyncOffset(out int piAvg);
[PreserveSig]
int get_DevSyncOffset(out int piDev);
}
#endregion
}