EncoderProfile.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
36 #pragma once
37 
38 #include "ISettings.h"
39 #include "ProfileTypes.h"
40 #include "EdgeVisSDK.h"
41 #include "Pimpl.h"
42 
43 namespace EdgeVisDecoderSDK
44 {
49 
50  class EncoderSettings;
51  class EncoderProfileImpl;
52 
53  class EncoderProfile : public ISettings, public EdgeVisSDKPimpl<EncoderProfileImpl>
54  {
55  private:
56  friend class EncoderProfileImpl;
57 
58  public:
59 
63  DB_EDGEVIS_SDK EncoderProfile();
64 
65  EdgeVisSDKPimplWeakConstructor(EncoderProfile);
66 
67  DB_EDGEVIS_SDK virtual ~EncoderProfile();
68 
74  DB_EDGEVIS_SDK std::wstring ProfileName() const;
75 
81  DB_EDGEVIS_SDK EncoderSettings GetSettings() const;
82 
88  DB_EDGEVIS_SDK BandwidthProfileInfo GetBandwidthInfo() const;
89 
95  DB_EDGEVIS_SDK AudioProfileInfo GetAudioInfo() const;
96 
102  DB_EDGEVIS_SDK VideoProfileInfo GetVideoInfo() const;
103 
111  DB_EDGEVIS_SDK bool SetProfileName(const std::wstring& pn);
112 
127  DB_EDGEVIS_SDK bool SetBandwidthInfo(const BandwidthProfileInfo& bi);
128 
140  DB_EDGEVIS_SDK bool SetAudioInfo(const AudioProfileInfo& ai);
141 
153  DB_EDGEVIS_SDK bool SetVideoInfo(const VideoProfileInfo& vi);
154 
155  //Profile Generation methods
156  DB_EDGEVIS_SDK bool Generate(int32_t bandwidthPercentage, int32_t frameParam, bool useAudio);
157  DB_EDGEVIS_SDK bool GeneratePreset(ProfilePreset preset);
158  DB_EDGEVIS_SDK ProfilePreset GetProfilePreset();
159  DB_EDGEVIS_SDK int32_t GetBandwidthPercentage();
160  DB_EDGEVIS_SDK int32_t GetFrameParamMax();
161  DB_EDGEVIS_SDK int32_t GetFrameParam();
162  DB_EDGEVIS_SDK int32_t GetAudioBandwidth();
163 
170  DB_EDGEVIS_SDK std::vector<int32_t> GetAvailableFrameStepValues();
171 
179  DB_EDGEVIS_SDK std::vector<std::pair<int32_t, int32_t>> GetAvailableFrameSizeValues();
180 
181 
182  private:
183  bool IsHDCapable();
184  bool IsV6Codec();
185  bool IsConstantFrameRateMode();
186  bool IsUsingNewDims();
187 
188  bool ProfilePresetMapContainsMatch(ProfilePreset preset);
189 
190  int32_t GetAudioBandwidth(AudioProfileInfo& ai);
191  int32_t SetAudioBandwidth(AudioProfileInfo& ai, int32_t availableMonoBandwidth);
192  int32_t GetBandwidthPercentage(int32_t bandwidth);
193 
194  void ApplyFrameSizeLicenceRestrictions(int32_t& width, int32_t& height, int32_t frame_step);
195  void ApplyFrameStepCapabilitiesRestrictions(int32_t& height, int32_t& frame_step);
196 
197  public:
198  // ISettings methods
199  DB_EDGEVIS_SDK virtual std::wstring Name() const;
200  };
201 }
DB_EDGEVIS_SDK AudioProfileInfo GetAudioInfo() const
Gets the audio information from the profile.
The video profile info as used in the EncoderProfile object.
Definition: ProfileTypes.h:94
ProfilePreset
Definition: ProfileTypes.h:131
DB_EDGEVIS_SDK VideoProfileInfo GetVideoInfo() const
Gets the video information from the profile.
DB_EDGEVIS_SDK std::wstring ProfileName() const
Gets the profile&#39;s name.
virtual DB_EDGEVIS_SDK std::wstring Name() const
Gets the name of the settings object.
DB_EDGEVIS_SDK BandwidthProfileInfo GetBandwidthInfo() const
Gets the bandwidth information from the profile.
struct VideoProfileInfo VideoProfileInfo
The video profile info as used in the EncoderProfile object.
DB_EDGEVIS_SDK bool SetBandwidthInfo(const BandwidthProfileInfo &bi)
Sets the profile&#39;s bandwidth information.
DB_EDGEVIS_SDK bool SetAudioInfo(const AudioProfileInfo &ai)
Sets the profile&#39;s audio information.
Definition of the ISettings interface class.
Definition: ISettings.h:34
struct AudioProfileInfo AudioProfileInfo
The audio profile info as used in the EncoderProfile object.
DB_EDGEVIS_SDK std::vector< int32_t > GetAvailableFrameStepValues()
Retrieve a list of valid frame step values for this encoder.
The EncoderProfile interface contains Encoder connection profile settings.
Definition: EncoderProfile.h:53
DB_EDGEVIS_SDK EncoderSettings GetSettings() const
Gets the current Encoder settings.
The audio profile info as used in the EncoderProfile object.
Definition: ProfileTypes.h:50
The EncoderSettings interface provides access to an Encoder&#39;s configuration, connection profile and c...
Definition: EncoderSettings.h:93
DB_EDGEVIS_SDK bool SetVideoInfo(const VideoProfileInfo &vi)
Sets the profile&#39;s video information.
DB_EDGEVIS_SDK EncoderProfile()
Creates a new EncoderProfile object.
DB_EDGEVIS_SDK std::vector< std::pair< int32_t, int32_t > > GetAvailableFrameSizeValues()
Retrieve a list of valid frame dimensions values for this encoder.
The Bandwidth profile info as used in the EncoderProfile object.
Definition: ProfileTypes.h:23
DB_EDGEVIS_SDK bool SetProfileName(const std::wstring &pn)
Sets the profile&#39;s name.
struct BandwidthProfileInfo BandwidthProfileInfo
The Bandwidth profile info as used in the EncoderProfile object.
The EdgeVis Decoder SDK namespace.