forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQEdit.cs
176 lines (151 loc) · 4.82 KB
/
QEdit.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
#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;
namespace DirectShowLib
{
#region Declarations
/// <summary>
/// From AMINTERLACE_*
/// </summary>
[Flags]
public enum AMInterlace
{
None = 0,
IsInterlaced = 0x00000001,
OneFieldPerSample = 0x00000002,
Field1First = 0x00000004,
Unused = 0x00000008,
FieldPatternMask = 0x00000030,
FieldPatField1Only = 0x00000000,
FieldPatField2Only = 0x00000010,
FieldPatBothRegular = 0x00000020,
FieldPatBothIrregular = 0x00000030,
DisplayModeMask = 0x000000c0,
DisplayModeBobOnly = 0x00000000,
DisplayModeWeaveOnly = 0x00000040,
DisplayModeBobOrWeave = 0x00000080,
}
/// <summary>
/// From AMCOPYPROTECT_*
/// </summary>
public enum AMCopyProtect
{
None = 0,
RestrictDuplication = 0x00000001
}
/// <summary>
/// From AMCONTROL_*
/// </summary>
[Flags]
public enum AMControl
{
None = 0,
Used = 0x00000001,
PadTo4x3 = 0x00000002,
PadTo16x9 = 0x00000004,
}
/// <summary>
/// From VIDEOINFOHEADER
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public class VideoInfoHeader
{
public DsRect SrcRect;
public DsRect TargetRect;
public int BitRate;
public int BitErrorRate;
public long AvgTimePerFrame;
public BitmapInfoHeader BmiHeader;
}
/// <summary>
/// From VIDEOINFOHEADER2
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public class VideoInfoHeader2
{
public DsRect SrcRect;
public DsRect TargetRect;
public int BitRate;
public int BitErrorRate;
public long AvgTimePerFrame;
public AMInterlace InterlaceFlags;
public AMCopyProtect CopyProtectFlags;
public int PictAspectRatioX;
public int PictAspectRatioY;
public AMControl ControlFlags;
public int Reserved2;
public BitmapInfoHeader BmiHeader;
}
/// <summary>
/// From WAVEFORMATEX
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack=2)]
public class WaveFormatEx
{
public short wFormatTag;
public short nChannels;
public int nSamplesPerSec;
public int nAvgBytesPerSec;
public short nBlockAlign;
public short wBitsPerSample;
public short cbSize;
}
#endregion
#region Interfaces
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("6B652FFF-11FE-4fce-92AD-0266B5D7C78F"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISampleGrabber
{
[PreserveSig]
int SetOneShot(
[In, MarshalAs(UnmanagedType.Bool)] bool OneShot);
[PreserveSig]
int SetMediaType(
[In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
[PreserveSig]
int GetConnectedMediaType(
[Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
[PreserveSig]
int SetBufferSamples(
[In, MarshalAs(UnmanagedType.Bool)] bool BufferThem);
[PreserveSig]
int GetCurrentBuffer(ref int pBufferSize, IntPtr pBuffer);
[PreserveSig]
int GetCurrentSample(out IMediaSample ppSample);
[PreserveSig]
int SetCallback(ISampleGrabberCB pCallback, int WhichMethodToCallback);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("0579154A-2B53-4994-B0D0-E773148EFF85"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISampleGrabberCB
{
/// <summary>
/// When called, callee must release pSample
/// </summary>
[PreserveSig]
int SampleCB(double SampleTime, IMediaSample pSample);
[PreserveSig]
int BufferCB(double SampleTime, IntPtr pBuffer, int BufferLen);
}
#endregion
}