MediaStream.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
21 #pragma once
22 
23 #include "AudioConfig.h"
24 #include "EdgeVisSDK.h"
25 #include "FrameConfig.h"
26 #include "Stream.h"
27 #include "VideoSourceFormats.h"
28 #include "YCbCrFrame.h"
29 
30 class FullResEnhancer;
31 class EnhanceOperationListener;
32 
33 namespace EdgeVisDecoderSDK
34 {
35  class MediaStreamImpl;
36 
37  class MediaStream : public Stream
38  {
39  private:
40  friend class MediaStreamImpl;
41 
42  public:
43  DB_EDGEVIS_SDK virtual ~MediaStream();
44 
45  DB_EDGEVIS_SDK MediaStream();
46  MediaStream(std::weak_ptr<EncoderImpl> encoder);
47  MediaStream(std::weak_ptr<MediaStreamImpl> pimpl);
48  DB_EDGEVIS_SDK MediaStream(const Stream &other);
49 
53  DB_EDGEVIS_SDK void RequestKeyFrame();
54 
61  DB_EDGEVIS_SDK void SetEnableSCTData(bool enable);
62 
69  DB_EDGEVIS_SDK bool GetEnableSCTData();
70 
78  DB_EDGEVIS_SDK void SetEnableIndexedSCTData(bool enable);
79 
86  DB_EDGEVIS_SDK bool GetEnableIndexedSCTData();
87 
94  DB_EDGEVIS_SDK void SetEnableAudioData(bool enable);
95 
102  DB_EDGEVIS_SDK bool GetEnableAudioData();
103 
109  DB_EDGEVIS_SDK void GetLastFrame(YCbCrFrame &destination);
110 
121  DB_EDGEVIS_SDK void EnableFullResBuffer(int32_t fullResBufferSize, int32_t memoryQuota, int32_t fullResFps, int32_t KeepInflated);
122 
126  DB_EDGEVIS_SDK void DisableFullResBuffer();
127 
134  DB_EDGEVIS_SDK void SetFullResJPEGQuality(int32_t quality);
135 
141  DB_EDGEVIS_SDK int32_t GetFullResJPEGQuality();
142 
148  DB_EDGEVIS_SDK void SetFullResMaxInflatedFrames(int32_t maxInflatedFrames);
149 
155  DB_EDGEVIS_SDK int32_t GetFullResMaxInflatedFrames();
156 
162  DB_EDGEVIS_SDK void SetFullResFps(int32_t fps);
163 
169  DB_EDGEVIS_SDK int32_t GetFullResFps();
170 
176  DB_EDGEVIS_SDK void SetFullResMaxCachedFrames(int32_t maxCachedFrames);
177 
183  DB_EDGEVIS_SDK int32_t GetFullResMaxCachedFrames();
184 
190  DB_EDGEVIS_SDK int32_t GetStreamBandwidth();
191 
200  DB_EDGEVIS_SDK double GetFrameRate();
201 
207  DB_EDGEVIS_SDK int32_t GetFrameHeight();
208 
214  DB_EDGEVIS_SDK int32_t GetFrameWidth();
215 
221  DB_EDGEVIS_SDK VideoSourceFormat GetVideoSourceFormat();
222 
229  DB_EDGEVIS_SDK void SetEnablePathSmoothing(bool enable);
230 
237  DB_EDGEVIS_SDK bool GetEnablePathSmoothing();
238 
249  DB_EDGEVIS_SDK void SetEnableOnvifMetadata(bool enable, bool enable_extensions = true);
250 
257  DB_EDGEVIS_SDK bool GetEnableOnvifMetadata();
258 
266  DB_EDGEVIS_SDK int64_t GetViewerTimeoutDuration() const;
267 
275  DB_EDGEVIS_SDK int64_t GetViewerTimeRemaining() const;
276 
280  DB_EDGEVIS_SDK void ResetViewerTimeout();
281 
285  DB_EDGEVIS_SDK void SetViewerTimeoutEnabled(bool enabled);
286 
295  DB_EDGEVIS_SDK FrameConfig GetVideoFrameConfig();
296 
305  DB_EDGEVIS_SDK bool SetVideoFrameConfig(FrameConfig config);
306 
312  DB_EDGEVIS_SDK size_t MaxVideoConverters() const;
313 
314  DB_EDGEVIS_SDK bool EnableVideoConverter(size_t index, FrameConfig config);
315 
316  DB_EDGEVIS_SDK void DisableVideoConverter(size_t index);
317 
322  DB_EDGEVIS_SDK void RequestH264IFrame();
323 
330  DB_EDGEVIS_SDK AudioConfig GetAudioConfig();
331 
339  DB_EDGEVIS_SDK bool SetAudioConfig(AudioConfig config);
340 
346  DB_EDGEVIS_SDK size_t MaxAudioConverters() const;
347 
348  DB_EDGEVIS_SDK bool EnableAudioConverter(size_t index, AudioConfig config);
349 
350  DB_EDGEVIS_SDK void DisableAudioConverter(size_t index);
351 
352  public:
353 
359  DB_EDGEVIS_SDK virtual bool IsConnected() const;
360 
366  DB_EDGEVIS_SDK Stream* AsStream();
367  };
368 }
DB_EDGEVIS_SDK int32_t GetFullResFps()
Returns the maximum number for fps for the full resolution cache.
DB_EDGEVIS_SDK void SetFullResMaxInflatedFrames(int32_t maxInflatedFrames)
Sets the maximum number of frames to keep inflated.
DB_EDGEVIS_SDK bool SetVideoFrameConfig(FrameConfig config)
Set the format configuration for video frames provided by the MediaStream.
DB_EDGEVIS_SDK double GetFrameRate()
Returns the current frames per second of the decoded video stream.
DB_EDGEVIS_SDK void SetFullResJPEGQuality(int32_t quality)
Sets the quality of the JPEG frame as cached locally.
DB_EDGEVIS_SDK bool SetAudioConfig(AudioConfig config)
Set the format configuration for audio provided by the MediaStream.
DB_EDGEVIS_SDK void SetEnableSCTData(bool enable)
Enables the SCTData callback on the listener.
A MediaStream is a Stream class that provides additional methods and properties specific to the Media...
Definition: MediaStream.h:37
DB_EDGEVIS_SDK void SetEnableIndexedSCTData(bool enable)
Enables the SCTIndexedData callback on the listener.
DB_EDGEVIS_SDK int64_t GetViewerTimeoutDuration() const
Returns the time in milliseconds that the stream will time out after if idle.
DB_EDGEVIS_SDK bool GetEnableSCTData()
Returns if the SCTData callbacks are enabled.
An YCbCrFrame is delivered for every frame of video decoded from a media stream.
Definition: YCbCrFrame.h:39
DB_EDGEVIS_SDK VideoSourceFormat GetVideoSourceFormat()
Returns the current VideoSourceFormat of the video stream.
virtual DB_EDGEVIS_SDK bool IsConnected() const
Checks if the media stream is currently connected.
DB_EDGEVIS_SDK Stream * AsStream()
Returns the media stream object.
DB_EDGEVIS_SDK bool GetEnableAudioData()
Returns true if the audio callbacks are enabled.
DB_EDGEVIS_SDK void SetViewerTimeoutEnabled(bool enabled)
Enables or disables the stream timeout for viewers.
DB_EDGEVIS_SDK void EnableFullResBuffer(int32_t fullResBufferSize, int32_t memoryQuota, int32_t fullResFps, int32_t KeepInflated)
Enables the full resolution feature on the encoder.
The Stream interface represent a service that is available on an Encoder.
Definition: Stream.h:50
VideoSourceFormat
The type of video source in use at the encoder.
Definition: VideoSourceFormats.h:20
DB_EDGEVIS_SDK bool GetEnablePathSmoothing()
Returns true if actor analytics path smoothing is enabled.
DB_EDGEVIS_SDK int32_t GetFullResMaxCachedFrames()
Returns the maximum number of frames being cached for the Full Resolution feature.
DB_EDGEVIS_SDK void RequestKeyFrame()
Request that the encoder inserts a key frame in to the EdgeVis stream.
DB_EDGEVIS_SDK int32_t GetFullResJPEGQuality()
Returns the value of the JPEG frame as cached locally.
DB_EDGEVIS_SDK void SetEnableAudioData(bool enable)
Enables the Audio data callback on the listener.
DB_EDGEVIS_SDK FrameConfig GetVideoFrameConfig()
Get the format configuration for video frames provided by the MediaStream.
DB_EDGEVIS_SDK size_t MaxVideoConverters() const
Maximum number of simultaneous video conversions available on this media stream.
DB_EDGEVIS_SDK void DisableFullResBuffer()
Enables the full resolution feature on the encoder.
DB_EDGEVIS_SDK void SetEnablePathSmoothing(bool enable)
Enables smoothing of actor analytics path data.
DB_EDGEVIS_SDK void SetEnableOnvifMetadata(bool enable, bool enable_extensions=true)
Enables ONVIF style XML metadata for analytics.
DB_EDGEVIS_SDK void ResetViewerTimeout()
Resets the stream timeout timer.
This is the base class for the FrameConfig objects.
Definition: FrameConfig.h:28
DB_EDGEVIS_SDK int32_t GetFrameWidth()
Returns the current width of frames of the decoded video stream.
DB_EDGEVIS_SDK void GetLastFrame(YCbCrFrame &destination)
Returns the last frame of video as a YCbCrFrame.
DB_EDGEVIS_SDK void RequestH264IFrame()
Instruct the MediaStream to generate an H264 I frame.
DB_EDGEVIS_SDK int64_t GetViewerTimeRemaining() const
Returns the time in milliseconds remaining until the stream times out.
DB_EDGEVIS_SDK int32_t GetStreamBandwidth()
Returns the current bandwidth of the media stream in bits per second.
DB_EDGEVIS_SDK size_t MaxAudioConverters() const
Maximum number of simultaneous audio conversions available on this media stream.
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK AudioConfig GetAudioConfig()
Get the format configuration for audio frames provided by the MediaStream.
DB_EDGEVIS_SDK int32_t GetFullResMaxInflatedFrames()
Returns the maximum number of frames to keep inflated.
DB_EDGEVIS_SDK bool GetEnableIndexedSCTData()
Returns true if the SCTIndexedData is enabled.
DB_EDGEVIS_SDK void SetFullResFps(int32_t fps)
Sets the maximum number for fps for the full resolution cache.
DB_EDGEVIS_SDK void SetFullResMaxCachedFrames(int32_t maxCachedFrames)
Sets the maximum number of frames to cache for the Full Resolution feature.
DB_EDGEVIS_SDK bool GetEnableOnvifMetadata()
Returns true if ONVIF metadata is enabled.
DB_EDGEVIS_SDK int32_t GetFrameHeight()
Returns the current height of frames of the decoded video stream.