FullResService.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
36 #pragma once
37 
38 #include <cstdint>
39 #include <vector>
40 #include "Service.h"
41 #include "Stream.h"
42 #include "JPEGFrame.h"
43 #include "YCbCrFrame.h"
44 
45 namespace EdgeVisDecoderSDK
46 {
47  class FullResServiceImpl;
48  class IFullResListener;
49  class Encoder;
50 
51  class FullResService : public Stream, public Service
52  {
53  private:
54  friend class FullResServiceImpl;
55 
56  public:
57  DB_EDGEVIS_SDK FullResService() {};
58  FullResService(std::weak_ptr<EncoderImpl> encoder, const std::wstring& name = L"");
59  FullResService(std::weak_ptr<FullResServiceImpl> pimpl);
60  FullResService(const Stream& other);
61  DB_EDGEVIS_SDK virtual ~FullResService();
62 
67  DB_EDGEVIS_SDK void SetListener(IFullResListener * listener);
68 
69  DB_EDGEVIS_SDK bool GetThumbnailCachingEnabled() const;
70  DB_EDGEVIS_SDK void SetThumbnailCachingEnabled(const bool enable);
71 
72  DB_EDGEVIS_SDK int32_t GetThumbnailJPEGQuality() const;
73  DB_EDGEVIS_SDK void SetThumbnailJPEGQuality(const int32_t quality);
74 
75 
76  DB_EDGEVIS_SDK int32_t GetMaxCachedThumbnails() const;
77  DB_EDGEVIS_SDK void SetMaxCachedThumbnails(const int32_t maxCachedFrames);
78 
79 
80  DB_EDGEVIS_SDK int32_t GetMemoryQuota() const;
81  DB_EDGEVIS_SDK void SetMemoryQuota(const int32_t memoryQuota);
82 
83 
84  DB_EDGEVIS_SDK int32_t GetThumbnailCacheFps() const;
85  DB_EDGEVIS_SDK void SetThumbnailCacheFps(const int32_t fullResFps);
86 
87 
88  DB_EDGEVIS_SDK int32_t GetMaxInflatedFrames() const;
89  DB_EDGEVIS_SDK void SetMaxInflatedFrames(const int32_t maxInflatedFrames);
90 
91 
100  DB_EDGEVIS_SDK bool GetAllowEncoderOnlyFrames();
101 
109  DB_EDGEVIS_SDK void SetAllowEncoderOnlyFrames(bool allow);
110 
116  DB_EDGEVIS_SDK std::vector<int64_t> GetAvailableFrameIndices();
117 
123  DB_EDGEVIS_SDK std::vector<JPEGFrame> GetAvailableJPEGFrames();
124 
132  DB_EDGEVIS_SDK const JPEGFrame GetJPEGFrame(int64_t idx);
133 
143  DB_EDGEVIS_SDK bool GetEncoderCacheOnly(int64_t idx);
144 
152  DB_EDGEVIS_SDK bool GetJPEGProvidedExternally(int64_t idx);
153 
170  DB_EDGEVIS_SDK bool InsertExternalThumbnail(byte_array data, const int32_t& width, const int32_t& height, const int64_t& timestamp, const int64_t& display_timestamp, const int32_t& input);
171 
179  DB_EDGEVIS_SDK void SetActiveFrame(int64_t idx);
180 
187  DB_EDGEVIS_SDK const YCbCrFrame GetYCbCrFrame(int64_t idx);
188 
202  DB_EDGEVIS_SDK void EnhanceArea(int32_t left, int32_t top, int32_t width, int32_t height);
203 
209  DB_EDGEVIS_SDK void EnhanceEntireFrame();
210 
214  DB_EDGEVIS_SDK void CancelEnhanceRequests();
215 
219  DB_EDGEVIS_SDK int32_t GetCachedFrameCount();
220 
224  DB_EDGEVIS_SDK int32_t GetInflatedFrameCount();
225 
229  DB_EDGEVIS_SDK int32_t GetJPEGMemoryUsage();
230 
234  DB_EDGEVIS_SDK int32_t GetYUVMemoryUsage();
235 
240  DB_EDGEVIS_SDK int32_t GetTotalMemoryUsage();
241 
242 
243  public:
244 
252  DB_EDGEVIS_SDK virtual OpResult Start();
253 
260  DB_EDGEVIS_SDK virtual OpResult Stop();
261 
262  };
263 }
DB_EDGEVIS_SDK const YCbCrFrame GetYCbCrFrame(int64_t idx)
Retrieves the inflated frame for an index.
Definition of the Service abstract class.
Definition: Service.h:48
DB_EDGEVIS_SDK void SetActiveFrame(int64_t idx)
Selects the active frame to be integrated for Full Resolution.
DB_EDGEVIS_SDK std::vector< JPEGFrame > GetAvailableJPEGFrames()
Will return the available frames as JPEGs.
The interface for the Full resolution service callbacks.
Definition: IFullResListener.h:34
Access to the Full Resolution capability on encoders that support it.
Definition: FullResService.h:51
DB_EDGEVIS_SDK int32_t GetYUVMemoryUsage()
Determines the total memory footprint of the inflated YUV frames in the Full Resolution cache...
DB_EDGEVIS_SDK const JPEGFrame GetJPEGFrame(int64_t idx)
Will return the a single available frame as JPEG.
DB_EDGEVIS_SDK int32_t GetInflatedFrameCount()
Determines the total number of inflated YUV frames currently held in the Full Resolution cache...
An YCbCrFrame is delivered for every frame of video decoded from a media stream.
Definition: YCbCrFrame.h:39
DB_EDGEVIS_SDK void SetListener(IFullResListener *listener)
Add a listener to the Full resolution service.
DB_EDGEVIS_SDK void CancelEnhanceRequests()
Cancels any enhancement currently under way.
The Stream interface represent a service that is available on an Encoder.
Definition: Stream.h:50
DB_EDGEVIS_SDK void EnhanceEntireFrame()
Retrieves the entire frame.
DB_EDGEVIS_SDK void EnhanceArea(int32_t left, int32_t top, int32_t width, int32_t height)
Retrieves an area of the frame to be retrieved.
DB_EDGEVIS_SDK int32_t GetJPEGMemoryUsage()
Determines the total memory footprint of the JPEG thumbnails in the Full Resolution cache...
DB_EDGEVIS_SDK std::vector< int64_t > GetAvailableFrameIndices()
Will return the available frames that can be used for Full resolution.
DB_EDGEVIS_SDK bool GetEncoderCacheOnly(int64_t idx)
Indicates if a frame exists only at the encoder and does not have a thumbnail in the Decoder SDK cach...
DB_EDGEVIS_SDK int32_t GetTotalMemoryUsage()
Determines the total memory footprint of the Full Resolution cache, including JPEG thumbnails and inf...
DB_EDGEVIS_SDK bool InsertExternalThumbnail(byte_array data, const int32_t &width, const int32_t &height, const int64_t &timestamp, const int64_t &display_timestamp, const int32_t &input)
Add a JPEG to the thumbnail cache from an external source.
DB_EDGEVIS_SDK bool GetAllowEncoderOnlyFrames()
Determine if frames cached only at the encoder with no client-side thumbnail will be made available t...
DB_EDGEVIS_SDK bool GetJPEGProvidedExternally(int64_t idx)
Indicates if the available thumbnail has been provided by an external source using InsertExternalThum...
virtual DB_EDGEVIS_SDK OpResult Stop()
Stops the Full resolution service.
A JPEGFrame is designed for transforming YCbCr colour space frames into an in memory JPEG frame buffe...
Definition: JPEGFrame.h:39
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK int32_t GetCachedFrameCount()
Determines the total number of frames currently held in the Full Resolution cache.
DB_EDGEVIS_SDK void SetAllowEncoderOnlyFrames(bool allow)
Set if frames cached only at the encoder with no client-side thumbnail will be made available to the ...
virtual DB_EDGEVIS_SDK OpResult Start()
Starts the Full resolution service.
OpResult
Result of an operation.
Definition: OpResult.h:25