Search Results

Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
79 #pragma once
80 
81 #include "EncoderConfig.h"
82 #include "EncoderProfile.h"
83 #include "CameraInfo.h"
84 #include "VideoFrameLayout.h"
85 #include "OpResult.h"
87 
88 namespace EdgeVisDecoderSDK
89 {
90  class Encoder;
91  class EncoderSettingsImpl;
92 
93  class EncoderSettings : public EdgeVisSDKPimpl<EncoderSettingsImpl>
94  {
95  private:
96  friend class EncoderSettingsImpl;
97 
98  public:
99 
100  DB_EDGEVIS_SDK EncoderSettings();
101 
102  EdgeVisSDKPimplWeakConstructor(EncoderSettings);
103 
104  DB_EDGEVIS_SDK virtual ~EncoderSettings();
105 
123  DB_EDGEVIS_SDK OpResult GetEncoderConfig(EncoderConfig& result);
124 
132  DB_EDGEVIS_SDK bool IsConfigValid();
133 
140  DB_EDGEVIS_SDK void InvalidateEncoderConfig();
141 
147  DB_EDGEVIS_SDK std::wstring GetCurrentProfileName();
148 
167  DB_EDGEVIS_SDK OpResult GetCurrentProfile(EncoderProfile& result);
168 
188  DB_EDGEVIS_SDK OpResult GetProfile( EncoderProfile& result, const std::wstring& profileName );
189 
208  DB_EDGEVIS_SDK OpResult GetAvailableProfiles( std::vector< EncoderProfile >& result );
209 
220  DB_EDGEVIS_SDK bool IsProfileValid( const std::wstring& profileName ) const;
221 
232  DB_EDGEVIS_SDK void InvalidateEncoderProfile( const std::wstring& profileName = L"" );
233 
234  DB_EDGEVIS_SDK OpResult GenerateProfiles( int32_t bandwidthPercentage, int32_t frameBias, bool useAudio, std::vector< EncoderProfile >& generatedProfiles );
235 
236  DB_EDGEVIS_SDK OpResult GeneratePresetProfiles( ProfilePreset preset, std::vector< EncoderProfile >& generatedProfiles );
237 
250  DB_EDGEVIS_SDK int32_t CameraInputs();
251 
269  DB_EDGEVIS_SDK OpResult GetCameraInfo( std::vector< CameraInfo > & result, bool includeVirtual = true );
270 
289  DB_EDGEVIS_SDK OpResult GetCameraInfo(CameraInfo & result, int32_t inputId );
290 
308  DB_EDGEVIS_SDK OpResult GetCurrentCameraInfo(CameraInfo & result);
309 
319  DB_EDGEVIS_SDK bool IsCameraInfoValid();
320 
329  DB_EDGEVIS_SDK void InvalidateCameraInfo();
330 
336  DB_EDGEVIS_SDK void InvalidateUpdateSequenceNos();
337 
342  DB_EDGEVIS_SDK void InvalidateAll();
343 
350  DB_EDGEVIS_SDK Encoder GetEncoder() const;
351 
364  DB_EDGEVIS_SDK VideoFrameLayout GetVideoFrameLayout(int32_t input);
365 
366 
373  DB_EDGEVIS_SDK void RegisterSettingsListener(IEncoderSettingsListener* listener);
374 
381  DB_EDGEVIS_SDK void UnregisterSettingsListener(IEncoderSettingsListener* listener);
382  };
383 }
VideoFrameLayout decribes the content of the frame from a given Encoder input.
Definition: VideoFrameLayout.h:37
DB_EDGEVIS_SDK VideoFrameLayout GetVideoFrameLayout(int32_t input)
Returns the VideoFrameLayout describing the sources used to construct the received YCbCrFrame for the...
The interface to provide callbacks on Encoder settings changes.
Definition: IEncoderSettingsListener.h:38
DB_EDGEVIS_SDK OpResult GetAvailableProfiles(std::vector< EncoderProfile > &result)
Retrieves all available connection profile settings for the Encoder.
DB_EDGEVIS_SDK void RegisterSettingsListener(IEncoderSettingsListener *listener)
Registers the specified encoder settings listener from the set of listeners to be notified about Enco...
DB_EDGEVIS_SDK bool IsProfileValid(const std::wstring &profileName) const
Determines if the cached Encoder connection profile settings are still valid.
DB_EDGEVIS_SDK Encoder GetEncoder() const
Returns the Encoder object that the EncoderSettings object refers to.
DB_EDGEVIS_SDK OpResult GetCameraInfo(std::vector< CameraInfo > &result, bool includeVirtual=true)
Retrieves a list of all CameraInput objects for all active inputs on the Encoder. ...
The EncoderProfile interface contains Encoder connection profile settings.
Definition: EncoderProfile.h:53
DB_EDGEVIS_SDK std::wstring GetCurrentProfileName()
Retrieves the name of the Encoder&#39;s current connection profile.
DB_EDGEVIS_SDK bool IsConfigValid()
Determines if the cached Encoder configuration settings are still valid.
The EncoderSettings interface provides access to an Encoder&#39;s configuration, connection profile and c...
Definition: EncoderSettings.h:93
An Encoder interface represents an Encoder that is managed by the server.
Definition: Encoder.h:58
The EncoderConfig interface contains the Encoder&#39;s global configuration settings. ...
Definition: EncoderConfig.h:69
DB_EDGEVIS_SDK OpResult GetProfile(EncoderProfile &result, const std::wstring &profileName)
Retrieves connection profile settings for the Encoder.
DB_EDGEVIS_SDK void InvalidateAll()
Invalidates all cached settings and settings update sequence numbers.
DB_EDGEVIS_SDK int32_t CameraInputs()
Retrieves the number of camera inputs that the Encoder has available.
The CameraInfo interface contains the settings for a Camera connected to one of the Encoder&#39;s camera ...
Definition: CameraInfo.h:43
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK void InvalidateCameraInfo()
Invalidates the currently cached camera input information for the Encoder.
DB_EDGEVIS_SDK OpResult GetCurrentProfile(EncoderProfile &result)
Retrieves the Encoder&#39;s current connection profile settings.
DB_EDGEVIS_SDK void InvalidateUpdateSequenceNos()
Invalidates setting update sequence numbers.
DB_EDGEVIS_SDK void InvalidateEncoderProfile(const std::wstring &profileName=L"")
Invalidates the currently cached Encoder connection profile settings.
DB_EDGEVIS_SDK OpResult GetEncoderConfig(EncoderConfig &result)
Retrieves the current Encoder configuration settings.
DB_EDGEVIS_SDK bool IsCameraInfoValid()
Determines if the cached camera input information for the Encoder is valid.
DB_EDGEVIS_SDK void UnregisterSettingsListener(IEncoderSettingsListener *listener)
Removes the specified encoder settings listener from the set of listeners to be notified about Encode...
DB_EDGEVIS_SDK OpResult GetCurrentCameraInfo(CameraInfo &result)
Retrieves the CameraInfo settings for the currently active camera input on the Encoder.
OpResult
Result of an operation.
Definition: OpResult.h:25
DB_EDGEVIS_SDK void InvalidateEncoderConfig()
Invalidates the currently cached Encoder configuration settings.