ConfigTypes.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
11 #pragma once
12 
13 #include <stdint.h>
14 #include <string>
15 
16 #ifdef __cplusplus
17 namespace EdgeVisDecoderSDK
18 {
19  extern "C" {
20 #endif
21 
26  typedef struct CameraConfig
27  {
28  int32_t id;
29  std::wstring name;
30  bool enabled;
31  bool ptzEnabled;
32  std::wstring protocol;
33  int32_t address;
34  std::wstring port;
35  int32_t baudRate;
36  } CameraConfig;
37 
43  typedef struct ColourInfo
44  {
45  int32_t brightness;
46  int32_t contrast;
47  int32_t hue;
48  int32_t colour;
49  } ColourInfo;
50 
56  typedef struct AudioInfo
57  {
58  bool enabled;
59  int32_t volumeLeft;
60  int32_t volumeRight;
61  int32_t audioChannels;
62  } AudioInfo;
63 
69  typedef struct FilterInfo
70  {
71  std::wstring filterType;
72  std::wstring filterParam;
73  } FilterInfo;
74 
84  typedef struct LocalWifiDownloadInfo
85  {
86  std::wstring mode;
91  bool enabled;
92  int32_t timeout;
94 
95 #ifdef __cplusplus
96  }
97 }
98 #endif
Defines Encoder local Wifi download settings.
Definition: ConfigTypes.h:84
bool enabled
True if enabled.
Definition: ConfigTypes.h:91
struct LocalWifiDownloadInfo LocalWifiDownloadInfo
Defines Encoder local Wifi download settings.
std::wstring filterParam
Parameters passed to the specified filter.
Definition: ConfigTypes.h:72
std::wstring mode
Sets the mode.
Definition: ConfigTypes.h:86
int32_t timeout
Timout time in Minutes.
Definition: ConfigTypes.h:92
Defines Encoder video filter settings.
Definition: ConfigTypes.h:69
std::wstring filterType
The filter type.
Definition: ConfigTypes.h:71
The EdgeVis Decoder SDK namespace.
struct FilterInfo FilterInfo
Defines Encoder video filter settings.