-
Notifications
You must be signed in to change notification settings - Fork 4
/
ONVIF.Structure.Capabilities.pas
263 lines (245 loc) · 8.53 KB
/
ONVIF.Structure.Capabilities.pas
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
unit ONVIF.Structure.Capabilities;
interface
Type
/// <summary>
/// Represents extension settings for network configuration in ONVIF.
/// </summary>
/// <record name="TExtensionNetworkONVIF">
/// <field name="Dot11Configuration" type="Boolean">
/// Indicates whether Dot11 configuration is supported.
/// </field>
/// </record>
TExtensionNetworkONVIF = record
Dot11Configuration : Boolean;
end;
/// <summary>
/// Represents network configuration settings in ONVIF.
/// </summary>
/// <record name="TNetworkONVIF">
/// <field name="IPFilter" type="Boolean">
/// Indicates whether IP filtering is supported.
/// </field>
/// <field name="ZeroConfiguration" type="Boolean">
/// Indicates whether zero configuration is supported.
/// </field>
/// <field name="IPVersion6" type="Boolean">
/// Indicates whether IP version 6 is supported.
/// </field>
/// <field name="DynDNS" type="Boolean">
/// Indicates whether DynDNS is supported.
/// </field>
/// <field name="Extension" type="TExtensionNetworkONVIF">
/// Extension settings for network configuration.
/// </field>
/// </record>
TNetworkONVIF = Record
IPFilter : Boolean;
ZeroConfiguration: Boolean;
IPVersion6 : Boolean;
DynDNS : Boolean;
Extension : TExtensionNetworkONVIF;
end;
/// <summary>
/// Represents supported versions for system configuration in ONVIF.
/// </summary>
/// <record name="TSupportedVersionsSytemONVIF">
/// <field name="Major" type="Integer">
/// The major version number.
/// </field>
/// <field name="Minor" type="Integer">
/// The minor version number.
/// </field>
/// </record>
TSupportedVersionsSytemONVIF = record
Major : Integer;
Minor : integer;
end;
/// <summary>
/// Represents system configuration settings in ONVIF.
/// </summary>
/// <record name="TSystemONVIF">
/// <field name="DiscoveryResolve" type="Boolean">
/// Indicates whether discovery resolve is supported.
/// </field>
/// <field name="DiscoveryBye" type="Boolean">
/// Indicates whether discovery bye is supported.
/// </field>
/// <field name="RemoteDiscovery" type="Boolean">
/// Indicates whether remote discovery is supported.
/// </field>
/// <field name="SystemBackup" type="Boolean">
/// Indicates whether system backup is supported.
/// </field>
/// <field name="SystemLogging" type="Boolean">
/// Indicates whether system logging is supported.
/// </field>
/// <field name="FirmwareUpgrade" type="Boolean">
/// Indicates whether firmware upgrade is supported.
/// </field>
/// <field name="SupportedVersions" type="TSupportedVersionsSytemONVIF">
/// Supported versions for system configuration.
/// </field>
/// </record>
TSystemONVIF = Record
DiscoveryResolve : Boolean;
DiscoveryBye : Boolean;
RemoteDiscovery : Boolean;
SystemBackup : Boolean;
SystemLogging : Boolean;
FirmwareUpgrade : Boolean;
SupportedVersions: TSupportedVersionsSytemONVIF;
end;
/// <summary>
/// Represents ONVIF device information.
/// </summary>
/// <record name="TDeviceONVIF">
/// <field name="XAddr" type="String">
/// The XAddr (service endpoint) of the ONVIF device.
/// </field>
/// <field name="Network" type="TNetworkONVIF">
/// Network configuration settings for the ONVIF device.
/// </field>
/// <field name="System" type="TSystemONVIF">
/// System configuration settings for the ONVIF device.
/// </field>
/// </record>
TDeviceONVIF = Record
XAddr : String;
Network : TNetworkONVIF;
System : TSystemONVIF;
end;
/// <summary>
/// Represents ONVIF events information.
/// </summary>
/// <record name="TEventsONVIF">
/// <field name="XAddr" type="String">
/// The XAddr (service endpoint) for ONVIF events.
/// </field>
/// <field name="WSSubscriptionPolicySupport" type="Boolean">
/// Indicates whether WS Subscription Policy is supported.
/// </field>
/// <field name="WSPullPointSupport" type="Boolean">
/// Indicates whether WS Pull Point is supported.
/// </field>
/// <field name="WSPausableSubscriptionManagerInterfaceSupport" type="Boolean">
/// Indicates whether WS Pausable Subscription Manager is supported.
/// </field>
/// </record>
TEventsONVIF = Record
XAddr : String;
WSSubscriptionPolicySupport : Boolean;
WSPullPointSupport : Boolean;
WSPausableSubscriptionManagerInterfaceSupport : Boolean;
end;
/// <summary>
/// Represents streaming capabilities information for ONVIF.
/// </summary>
/// <record name="TStreamingCapabilitiesONVIF">
/// <field name="RTPMulticast" type="Boolean">
/// Indicates whether RTP Multicast is supported.
/// </field>
/// <field name="RTP_TCP" type="Boolean">
/// Indicates whether RTP over TCP is supported.
/// </field>
/// <field name="RTP_RTSP_TCP" type="Boolean">
/// Indicates whether RTP over RTSP over TCP is supported.
/// </field>
/// </record>
TStreamingCapabilitiesONVIF = record
RTPMulticast : Boolean;
RTP_TCP : Boolean;
RTP_RTSP_TCP : Boolean;
end;
/// <summary>
/// Represents ONVIF media information.
/// </summary>
/// <record name="TMediaONVIF">
/// <field name="XAddr" type="String">
/// The XAddr (service endpoint) for ONVIF media.
/// </field>
/// <field name="StreamingCapabilities" type="TStreamingCapabilitiesONVIF">
/// Streaming capabilities for ONVIF media.
/// </field>
/// </record>
TMediaONVIF = Record
XAddr : String;
StreamingCapabilities : TStreamingCapabilitiesONVIF;
end;
/// <summary>
/// Represents ONVIF PTZ (Pan-Tilt-Zoom) information.
/// </summary>
/// <record name="TPTZONVIF">
/// <field name="XAddr" type="String">
/// The XAddr (service endpoint) for ONVIF PTZ.
/// </field>
/// </record>
TPTZONVIF = Record
XAddr : String;
end;
/// <summary>
/// Represents ONVIF search extension information.
/// </summary>
/// <record name="TSearchExtensionONVIF">
/// <field name="XAddr" type="String">
/// The XAddr (service endpoint) for ONVIF search extension.
/// </field>
/// <field name="MetadataSearch" type="Boolean">
/// Indicates whether metadata search is supported.
/// </field>
/// </record>
TSearchExtensionONVIF = record
XAddr : String;
MetadataSearch : Boolean;
end;
/// <summary>
/// Represents ONVIF replay extension information.
/// </summary>
/// <record name="TReplayExtensionONVIF">
/// <field name="XAddr" type="String">
/// The XAddr (service endpoint) for ONVIF replay extension.
/// </field>
/// </record>
TReplayExtensionONVIF = record
XAddr : String;
end;
/// <summary>
/// Represents ONVIF extension information.
/// </summary>
/// <record name="TExtensionONVIF">
/// <field name="Search" type="TSearchExtensionONVIF">
/// ONVIF search extension information.
/// </field>
/// <field name="Replay" type="TReplayExtensionONVIF">
/// ONVIF replay extension information.
/// </field>
/// </record>
TExtensionONVIF = Record
Search : TSearchExtensionONVIF;
Replay : TReplayExtensionONVIF
end;
/// <summary>
/// Represents ONVIF capabilities information.
/// </summary>
/// <record name="TCapabilitiesOVIF">
/// <field name="Device" type="TDeviceONVIF">
/// ONVIF device capabilities.
/// </field>
/// <field name="Events" type="TEventsONVIF">
/// ONVIF events capabilities.
/// </field>
/// <field name="Media" type="TPTZONVIF">
/// ONVIF PTZ capabilities.
/// </field>
/// <field name="Extension" type="TExtensionONVIF">
/// ONVIF extension capabilities.
/// </field>
/// </record>
TCapabilitiesONVIF = Record
Device : TDeviceONVIF;
Events : TEventsONVIF;
Media : TMediaONVIF;
PTZ : TPTZONVIF;
Extension : TExtensionONVIF;
end;
implementation
end.