BandwidthConfig.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Digital Barriers
4 
23 #pragma once
24 
25 #include "EdgeVisSDK.h"
26 #include "Pimpl.h"
27 
28 #include "ConnectionProfile.h"
29 
30 #include <string>
31 #include <stdint.h>
32 #include <vector>
33 
34 
35 namespace EdgeVisSDKCore
36 {
37  typedef EdgeVisSDKCore::ConnectionProfile ConnectionProfile;
38 
39  class BandwidthConfigImpl;
40 
41  class BandwidthConfig : public EdgeVisSDKPimpl<BandwidthConfigImpl>
42  {
43  public:
44  DB_EDGEVIS_SDK BandwidthConfig();
45  EdgeVisSDKPimplWeakConstructor(BandwidthConfig);
46 
47  DB_EDGEVIS_SDK virtual ~BandwidthConfig();
48 
54  DB_EDGEVIS_SDK std::vector<std::wstring> GetConnectionProfileNames() const;
55 
64  DB_EDGEVIS_SDK bool GetConnectionProfile(const std::wstring& name, ConnectionProfile& profile) const;
65 
73  DB_EDGEVIS_SDK bool GetConnectionProfiles(std::vector<ConnectionProfile>& profiles) const;
74 
82  DB_EDGEVIS_SDK bool SetConnectionProfile(const ConnectionProfile& profile);
83 
91  DB_EDGEVIS_SDK bool SetConnectionProfiles(const std::vector<ConnectionProfile>& profiles);
92 
100  DB_EDGEVIS_SDK int32_t GetMinBandwidthPercentage() const;
101 
111  DB_EDGEVIS_SDK bool SetMinBandwidthPercentage(const int32_t percentage);
112 
120  DB_EDGEVIS_SDK bool GetActiveConnectionProfile(ConnectionProfile& profile) const;
121 
122  };
123 }
DB_EDGEVIS_SDK bool GetActiveConnectionProfile(ConnectionProfile &profile) const
Get the active connection profile.
DB_EDGEVIS_SDK std::vector< std::wstring > GetConnectionProfileNames() const
Get the list of connection profile names available.
Availability
Definition: ConnectionProfile.h:33
DB_EDGEVIS_SDK bool GetConnectionProfiles(std::vector< ConnectionProfile > &profiles) const
Get the list of available connection profiles.
DB_EDGEVIS_SDK bool GetConnectionProfile(const std::wstring &name, ConnectionProfile &profile) const
Get the specified connection profile.
DB_EDGEVIS_SDK bool SetMinBandwidthPercentage(const int32_t percentage)
Set the minimum bandwidth for the all connection profiles as a percentage of the maximum bandwidth fo...
DB_EDGEVIS_SDK bool SetConnectionProfiles(const std::vector< ConnectionProfile > &profiles)
Get the list of available connection profiles.
DB_EDGEVIS_SDK int32_t GetMinBandwidthPercentage() const
Get the minimum bandwidth for the all connection profiles as a percentage of the maximum bandwidth fo...
Defines the bandwidth configuration to use for an encoder.
Definition: BandwidthConfig.h:41
DB_EDGEVIS_SDK bool SetConnectionProfile(const ConnectionProfile &profile)
Set a connection profile.
Definition: AreaOfInterestConfig.h:32