FeatureInfo.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
8 #pragma once
9 
10 #include <string>
11 
12 #ifdef __cplusplus
13 namespace EdgeVisDecoderSDK
14 {
15  extern "C" {
16 #endif
17 
23  typedef struct FeatureInfo
24  {
28  std::wstring name;
29 
33  bool supported;
34 
38  bool permitted;
39 
45 
50  bool licensed;
51 
56  int32_t license_count;
57  } FeatureInfo;
58 
59 
64  static const std::wstring FeatureLocalRecord = L"local_record";
65  static const std::wstring FeatureSwitchVideoInput = L"switch_video_input";
66  static const std::wstring FeatureBasicPTZ = L"basic_ptz";
67  static const std::wstring FeatureFullPTZ = L"full_ptz";
68  static const std::wstring FeaturePTZGoToPreset = L"ptz_goto_preset";
69  static const std::wstring FeatureFullResolution = L"full_resolution";
70  static const std::wstring FeatureViewStream = L"view_stream";
71  static const std::wstring FeatureViewArchive = L"view_archive";
72  static const std::wstring FeatureArchiveBookmarks = L"archive_bookmarks";
73  static const std::wstring FeatureStartStopArchiving = L"start_stop_archiving";
74  static const std::wstring FeatureArchiveDownload = L"archive_download";
75  static const std::wstring FeatureVirtualPTZ = L"vptz";
76  static const std::wstring FeaturePictureControls = L"picture_controls";
77  static const std::wstring FeatureVideoSettings = L"video_settings";
78  static const std::wstring FeatureAudioSettings = L"audio_settings";
79  static const std::wstring FeatureBandwidthSettings = L"bandwidth_settings";
80  static const std::wstring FeatureMobileProfile = L"mobile_profile";
81  static const std::wstring FeatureDeepSleep = L"deep_sleep";
82  static const std::wstring FeatureLocalWiFi = L"local_wifi";
83  static const std::wstring FeatureGPS = L"gps_location";
84  static const std::wstring FeaturePTZTours = L"ptz_tours";
85  static const std::wstring FeatureAreaOfInterest = L"area_of_interest";
86  static const std::wstring FeatureStaticLocation = L"static_location";
87  static const std::wstring FeatureAudio = L"audio";
88  static const std::wstring FeatureAlarmRules = L"alarm_rules";
89  static const std::wstring FeatureBodyCamera = L"body_camera";
90  static const std::wstring FeatureSecureConnect = L"secure_connect";
91  static const std::wstring FeatureGroundSensors = L"ground_sensors";
92  static const std::wstring FeatureRelayToggle = L"relay_toggle";
93  static const std::wstring FeatureGOPDownload = L"gop_download";
94  static const std::wstring FeatureSafeZone2D = L"safezone_2d";
95  static const std::wstring FeatureSafeZoneAI = L"safezone_ai";
96  static const std::wstring FeatureSerialPassThru = L"serial_pass_thru";
97  static const std::wstring FeatureAreaOfInterestV2 = L"aoi_v2";
98  static const std::wstring FeatureConfigureAnalytics = L"configure_analytics";
99  static const std::wstring FeatureReceiveAnalytics = L"receive_analytics";
100 
101 #ifdef __cplusplus
102  }
103 }
104 #endif
bool licensed
True if the feature is licensed on this Encoder.
Definition: FeatureInfo.h:50
bool license_required
True if the feature requires a licence on this Encoder.
Definition: FeatureInfo.h:44
int32_t license_count
The number of licences for this feature allocated to this Encoder.
Definition: FeatureInfo.h:56
bool permitted
True if the user has permission to use the feature on this Encoder.
Definition: FeatureInfo.h:38
std::wstring name
The name of the feature.
Definition: FeatureInfo.h:28
struct FeatureInfo FeatureInfo
Describes the availability of an Encoder feature.
Describes the availability of an Encoder feature.
Definition: FeatureInfo.h:23
The EdgeVis Decoder SDK namespace.
bool supported
True if the feature is supported on this Encoder.
Definition: FeatureInfo.h:33