ProfileTypes.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
8 #pragma once
9 
10 #include <stdint.h>
11 
12 #ifdef __cplusplus
13 namespace EdgeVisSDKCore
14 {
15  extern "C" {
16 #endif
17 
23  typedef struct BandwidthProfileInfo
24  {
30 
35  int32_t maxBandwidth;
36 
41  int32_t minBandwidth;
42  }
44 
50  typedef struct AudioProfileInfo
51  {
66  int32_t audioMode;
67 
86  int32_t audioQuality;
88 
94  typedef struct VideoProfileInfo
95  {
100  int32_t frameWidth;
101 
106  int32_t frameHeight;
107 
114  int32_t format;
115 
124  int32_t frameStep;
126 
131  typedef enum ProfilePreset
132  {
133  LOW,
138  } ProfilePreset;
139 
140 #ifdef __cplusplus
141  }
142 }
143 #endif
Low data rate, small frame size and low frames per second.
Definition: ProfileTypes.h:133
int32_t channelBandwidth
The total available channel bandwidth.
Definition: ProfileTypes.h:29
The video profile info as used in the EncoderProfile object.
Definition: ProfileTypes.h:94
ProfilePreset
Definition: ProfileTypes.h:131
Profile is custom, i.e.
Definition: ProfileTypes.h:137
int32_t frameHeight
The height of the encoded frame.
Definition: ProfileTypes.h:106
int32_t frameStep
This controls the frame rate of the video.
Definition: ProfileTypes.h:124
struct VideoProfileInfo VideoProfileInfo
The video profile info as used in the EncoderProfile object.
High data rate, high frame size and high frame rate.
Definition: ProfileTypes.h:136
int32_t minBandwidth
The minimum bandwidth to be used.
Definition: ProfileTypes.h:41
struct AudioProfileInfo AudioProfileInfo
The audio profile info as used in the EncoderProfile object.
Normal data rate, normal frame size but high frame rate.
Definition: ProfileTypes.h:134
The audio profile info as used in the EncoderProfile object.
Definition: ProfileTypes.h:50
int32_t frameWidth
The width of the encoded frame.
Definition: ProfileTypes.h:100
int32_t audioMode
The audio mode of this profile.
Definition: ProfileTypes.h:66
Normal data rate, high frame size but normal frame rate.
Definition: ProfileTypes.h:135
The Bandwidth profile info as used in the EncoderProfile object.
Definition: ProfileTypes.h:23
int32_t format
A value as per the CIFFormat enum.
Definition: ProfileTypes.h:114
struct BandwidthProfileInfo BandwidthProfileInfo
The Bandwidth profile info as used in the EncoderProfile object.
int32_t audioQuality
The audio quality of this profile.
Definition: ProfileTypes.h:86
Definition: AreaOfInterestConfig.h:32
int32_t maxBandwidth
The maximum bandwidth to be used.
Definition: ProfileTypes.h:35
bool enableAudio
True to enable audio on this profile.
Definition: ProfileTypes.h:56