forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqnetwork.cs
343 lines (256 loc) · 10.9 KB
/
qnetwork.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
#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 AMExtendedSeekingCapabilities
/// </summary>
[Flags]
public enum AMExtendedSeekingCapabilities
{
None = 0,
CanSeek = 1,
CanScan = 2,
MarkerSeek = 4,
ScanWithoutClock = 8,
NoStandardRepaint = 16,
Buffering = 32,
SendsVideoFrameReady = 64
}
#endregion
#region Interfaces
#if ALLOW_UNTESTED_INTERFACES
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F1-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMNetShowConfig
{
[PreserveSig]
int get_BufferingTime(out double pBufferingTime);
[PreserveSig]
int put_BufferingTime(double BufferingTime);
[PreserveSig]
int get_UseFixedUDPPort([MarshalAs(UnmanagedType.VariantBool)] out bool pUseFixedUDPPort);
[PreserveSig]
int put_UseFixedUDPPort([MarshalAs(UnmanagedType.VariantBool)] bool UseFixedUDPPort);
[PreserveSig]
int get_FixedUDPPort(out int pFixedUDPPort);
[PreserveSig]
int put_FixedUDPPort(int FixedUDPPort);
[PreserveSig]
int get_UseHTTPProxy([MarshalAs(UnmanagedType.VariantBool)] out bool pUseHTTPProxy);
[PreserveSig]
int put_UseHTTPProxy([MarshalAs(UnmanagedType.VariantBool)] bool UseHTTPProxy);
[PreserveSig]
int get_EnableAutoProxy([MarshalAs(UnmanagedType.VariantBool)] out bool pEnableAutoProxy);
[PreserveSig]
int put_EnableAutoProxy([MarshalAs(UnmanagedType.VariantBool)] bool EnableAutoProxy);
[PreserveSig]
int get_HTTPProxyHost([MarshalAs(UnmanagedType.BStr)] out string pbstrHTTPProxyHost);
[PreserveSig]
int put_HTTPProxyHost([MarshalAs(UnmanagedType.BStr)] string bstrHTTPProxyHost);
[PreserveSig]
int get_HTTPProxyPort(out int pHTTPProxyPort);
[PreserveSig]
int put_HTTPProxyPort(int HTTPProxyPort);
[PreserveSig]
int get_EnableMulticast([MarshalAs(UnmanagedType.VariantBool)] out bool pEnableMulticast);
[PreserveSig]
int put_EnableMulticast([MarshalAs(UnmanagedType.VariantBool)] bool EnableMulticast);
[PreserveSig]
int get_EnableUDP([MarshalAs(UnmanagedType.VariantBool)] out bool pEnableUDP);
[PreserveSig]
int put_EnableUDP([MarshalAs(UnmanagedType.VariantBool)] bool EnableUDP);
[PreserveSig]
int get_EnableTCP([MarshalAs(UnmanagedType.VariantBool)] out bool pEnableTCP);
[PreserveSig]
int put_EnableTCP([MarshalAs(UnmanagedType.VariantBool)] bool EnableTCP);
[PreserveSig]
int get_EnableHTTP([MarshalAs(UnmanagedType.VariantBool)] out bool pEnableHTTP);
[PreserveSig]
int put_EnableHTTP([MarshalAs(UnmanagedType.VariantBool)] bool EnableHTTP);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F2-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMChannelInfo
{
[PreserveSig]
int get_ChannelName([MarshalAs(UnmanagedType.BStr)] out string pbstrChannelName);
[PreserveSig]
int get_ChannelDescription([MarshalAs(UnmanagedType.BStr)] out string pbstrChannelDescription);
[PreserveSig]
int get_ChannelURL([MarshalAs(UnmanagedType.BStr)] out string pbstrChannelURL);
[PreserveSig]
int get_ContactAddress([MarshalAs(UnmanagedType.BStr)] out string pbstrContactAddress);
[PreserveSig]
int get_ContactPhone([MarshalAs(UnmanagedType.BStr)] out string pbstrContactPhone);
[PreserveSig]
int get_ContactEmail([MarshalAs(UnmanagedType.BStr)] out string pbstrContactEmail);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F3-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMNetworkStatus
{
[PreserveSig]
int get_ReceivedPackets(out int pReceivedPackets);
[PreserveSig]
int get_RecoveredPackets(out int pRecoveredPackets);
[PreserveSig]
int get_LostPackets(out int pLostPackets);
[PreserveSig]
int get_ReceptionQuality(out int pReceptionQuality);
[PreserveSig]
int get_BufferingCount(out int pBufferingCount);
[PreserveSig]
int get_IsBroadcast([MarshalAs(UnmanagedType.VariantBool)] out bool pIsBroadcast);
[PreserveSig]
int get_BufferingProgress(out int pBufferingProgress);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F5-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMNetShowExProps
{
[PreserveSig]
int get_SourceProtocol(out int pSourceProtocol);
[PreserveSig]
int get_Bandwidth(out int pBandwidth);
[PreserveSig]
int get_ErrorCorrection([MarshalAs(UnmanagedType.BStr)] out string pbstrErrorCorrection);
[PreserveSig]
int get_CodecCount(out int pCodecCount);
[PreserveSig]
int GetCodecInstalled(int CodecNum, [MarshalAs(UnmanagedType.VariantBool)] out bool pCodecInstalled);
[PreserveSig]
int GetCodecDescription(int CodecNum, [MarshalAs(UnmanagedType.BStr)] out string pbstrCodecDescription);
[PreserveSig]
int GetCodecURL(int CodecNum, [MarshalAs(UnmanagedType.BStr)] out string pbstrCodecURL);
[PreserveSig]
int get_CreationDate(out double pCreationDate);
[PreserveSig]
int get_SourceLink([MarshalAs(UnmanagedType.BStr)] out string pbstrSourceLink);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F6-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMExtendedErrorInfo
{
[PreserveSig]
int get_HasError([MarshalAs(UnmanagedType.VariantBool)] out bool pHasError);
[PreserveSig]
int get_ErrorDescription([MarshalAs(UnmanagedType.BStr)] out string pbstrErrorDescription);
[PreserveSig]
int get_ErrorCode(out int pErrorCode);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("AAE7E4E2-6388-11D1-8D93-006097C9A2B2"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMNetShowPreroll
{
[PreserveSig]
int put_Preroll([MarshalAs(UnmanagedType.VariantBool)] bool fPreroll);
[PreserveSig]
int get_Preroll([MarshalAs(UnmanagedType.VariantBool)] out bool pfPreroll);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("4746B7C8-700E-11D1-BECC-00C04FB6E937"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IDShowPlugin
{
[PreserveSig]
int get_URL([MarshalAs(UnmanagedType.BStr)] out string pURL);
[PreserveSig]
int get_UserAgent([MarshalAs(UnmanagedType.BStr)] out string pUserAgent);
}
#endif
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F4-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMMediaContent
{
[PreserveSig]
int get_AuthorName([MarshalAs(UnmanagedType.BStr)] out string pbstrAuthorName);
[PreserveSig]
int get_Title([MarshalAs(UnmanagedType.BStr)] out string pbstrTitle);
[PreserveSig]
int get_Rating([MarshalAs(UnmanagedType.BStr)] out string pbstrRating);
[PreserveSig]
int get_Description([MarshalAs(UnmanagedType.BStr)] out string pbstrDescription);
[PreserveSig]
int get_Copyright([MarshalAs(UnmanagedType.BStr)] out string pbstrCopyright);
[PreserveSig]
int get_BaseURL([MarshalAs(UnmanagedType.BStr)] out string pbstrBaseURL);
[PreserveSig]
int get_LogoURL([MarshalAs(UnmanagedType.BStr)] out string pbstrLogoURL);
[PreserveSig]
int get_LogoIconURL([MarshalAs(UnmanagedType.BStr)] out string pbstrLogoURL);
[PreserveSig]
int get_WatermarkURL([MarshalAs(UnmanagedType.BStr)] out string pbstrWatermarkURL);
[PreserveSig]
int get_MoreInfoURL([MarshalAs(UnmanagedType.BStr)] out string pbstrMoreInfoURL);
[PreserveSig]
int get_MoreInfoBannerImage([MarshalAs(UnmanagedType.BStr)] out string pbstrMoreInfoBannerImage);
[PreserveSig]
int get_MoreInfoBannerURL([MarshalAs(UnmanagedType.BStr)] out string pbstrMoreInfoBannerURL);
[PreserveSig]
int get_MoreInfoText([MarshalAs(UnmanagedType.BStr)] out string pbstrMoreInfoText);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("FA2AA8F9-8B62-11D0-A520-000000000000"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMExtendedSeeking
{
[PreserveSig]
int get_ExSeekCapabilities(out AMExtendedSeekingCapabilities pExCapabilities);
[PreserveSig]
int get_MarkerCount(out int pMarkerCount);
[PreserveSig]
int get_CurrentMarker(out int pCurrentMarker);
[PreserveSig]
int GetMarkerTime(int MarkerNum, out double pMarkerTime);
[PreserveSig]
int GetMarkerName(
int MarkerNum,
[MarshalAs(UnmanagedType.BStr)] out string pbstrMarkerName
);
[PreserveSig]
int put_PlaybackSpeed(double Speed);
[PreserveSig]
int get_PlaybackSpeed(out double pSpeed);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("CE8F78C1-74D9-11D2-B09D-00A0C9A81117"),
InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IAMMediaContent2
{
[PreserveSig]
int get_MediaParameter(int EntryNum, [MarshalAs(UnmanagedType.BStr)] string bstrName, [MarshalAs(UnmanagedType.BStr)] out string pbstrValue);
[PreserveSig]
int get_MediaParameterName(int EntryNum, int Index, [MarshalAs(UnmanagedType.BStr)] out string pbstrName);
[PreserveSig]
int get_PlaylistCount(out int pNumberEntries);
}
#endregion
}