StreamConfig.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Digital Barriers
4 
20 #pragma once
21 
22 #include "EdgeVisSDK.h"
23 #include "Pimpl.h"
24 
25 #include "AudioSource.h"
26 
27 #include <stdint.h>
28 
29 
30 namespace EdgeVisSDKCore
31 {
32  class StreamConfigImpl;
33 
34  class StreamConfig : public EdgeVisSDKPimpl<StreamConfigImpl>
35  {
36  public:
37  DB_EDGEVIS_SDK StreamConfig();
38  EdgeVisSDKPimplWeakConstructor(StreamConfig);
39 
40  DB_EDGEVIS_SDK virtual ~StreamConfig();
41 
50  DB_EDGEVIS_SDK int32_t GetStreamBandwidthShare() const;
51 
58  DB_EDGEVIS_SDK int32_t GetStreamBandwidthSharePercent() const;
59 
65  DB_EDGEVIS_SDK bool GetBandwidthSaver() const;
66 
75  DB_EDGEVIS_SDK std::wstring GetStreamProfileID() const;
76 
82  DB_EDGEVIS_SDK std::wstring GetStreamPrioritisation() const;
83 
91  DB_EDGEVIS_SDK int32_t GetTargetFrameHeight() const;
92 
100  DB_EDGEVIS_SDK int32_t GetTargetFrameStep() const;
101 
111  DB_EDGEVIS_SDK int32_t GetAudioQuality() const;
112 
120  DB_EDGEVIS_SDK AudioSource GetAudioSource() const;
121 
128  DB_EDGEVIS_SDK int32_t GetAudioChannels() const;
129 
140  DB_EDGEVIS_SDK bool SetStreamBandwidthShare(const int32_t bs);
141 
149  DB_EDGEVIS_SDK bool SetBandwidthSaver(const bool enable);
150 
160  DB_EDGEVIS_SDK bool SetStreamProfileID(const std::wstring& profile_id);
161 
171  DB_EDGEVIS_SDK bool SetStreamPrioritisation(const std::wstring& sp);
172 
184  DB_EDGEVIS_SDK bool SetTargetFrameHeight(const int32_t target_height);
185 
197  DB_EDGEVIS_SDK bool SetTargetFrameStep(const int32_t target_step);
198 
208  DB_EDGEVIS_SDK bool SetAudioQuality(const int32_t quality);
209 
217  DB_EDGEVIS_SDK bool SetAudioSource(const AudioSource& as);
218 
219  };
220 }
DB_EDGEVIS_SDK int32_t GetTargetFrameStep() const
Get the stream target frame step for this stream config.
DB_EDGEVIS_SDK bool SetBandwidthSaver(const bool enable)
Set the bandwidth saver value for this stream config.
AudioSource
Definition: AudioSource.h:24
DB_EDGEVIS_SDK bool SetStreamBandwidthShare(const int32_t bs)
Set the share of the available bandwidth that will be made available for this stream config...
DB_EDGEVIS_SDK AudioSource GetAudioSource() const
Get the stream audio source for this stream config.
Class to allow for configuring the streaming characteristics of an Encoder.
Definition: StreamConfig.h:34
DB_EDGEVIS_SDK int32_t GetAudioChannels() const
Get the number of audio channels for this stream config.
DB_EDGEVIS_SDK bool SetAudioQuality(const int32_t quality)
Set the stream audio quality for this stream config.
DB_EDGEVIS_SDK int32_t GetTargetFrameHeight() const
Get the stream target height for this stream config.
DB_EDGEVIS_SDK bool SetAudioSource(const AudioSource &as)
Set the stream audio source for this stream config.
DB_EDGEVIS_SDK std::wstring GetStreamProfileID() const
Get the ID of the current streaming profile Note that the available stream profile IDs can be determi...
DB_EDGEVIS_SDK int32_t GetStreamBandwidthShare() const
Get the share of the available bandwidth that will be made available for this encoder.
DB_EDGEVIS_SDK int32_t GetAudioQuality() const
Get the stream audio quality for this stream config.
This enum is used with the StreamConfig class to enable audio sources for the media stream...
DB_EDGEVIS_SDK bool SetTargetFrameStep(const int32_t target_step)
Set the stream target frame step (frame rate divider) to use for this stream config.
DB_EDGEVIS_SDK bool SetStreamPrioritisation(const std::wstring &sp)
Set the stream prioritisation to use for this stream config.
DB_EDGEVIS_SDK int32_t GetStreamBandwidthSharePercent() const
Get the share of the available bandwidth that will be made available for this encoder as a percentage...
DB_EDGEVIS_SDK bool GetBandwidthSaver() const
Get the bandwidth saver config value for the Encoder.
DB_EDGEVIS_SDK bool SetTargetFrameHeight(const int32_t target_height)
Set the stream target frame height to use for this stream config.
DB_EDGEVIS_SDK bool SetStreamProfileID(const std::wstring &profile_id)
Set the stream profile ID to use for this stream config.
Definition: AreaOfInterestConfig.h:32
DB_EDGEVIS_SDK std::wstring GetStreamPrioritisation() const
Get the stream prioritisation for this stream config.