VideoFrameLayoutComponent.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
29 #pragma once
30 
31 #include "EdgeVisSDK.h"
32 #include "Pimpl.h"
33 
34 namespace EdgeVisDecoderSDK
35 {
36  class VideoFrameLayoutComponentImpl;
37 
38  class VideoFrameLayoutComponent : public EdgeVisSDKPimpl<VideoFrameLayoutComponentImpl>
39  {
40  public:
41  DB_EDGEVIS_SDK VideoFrameLayoutComponent();
42  VideoFrameLayoutComponent(std::weak_ptr<VideoFrameLayoutComponentImpl> pimpl);
43 
49  DB_EDGEVIS_SDK int32_t GetInput() const;
50 
58  DB_EDGEVIS_SDK int32_t GetLeftOffsetPercentage() const;
59 
67  DB_EDGEVIS_SDK int32_t GetTopOffsetPercentage() const;
68 
76  DB_EDGEVIS_SDK int32_t GetWidthPercentage() const;
77 
85  DB_EDGEVIS_SDK int32_t GetHeightPercentage() const;
86  };
87 }
VideoFrameLayoutComponent decribes either all or part of a VideoFrameLayout.
Definition: VideoFrameLayoutComponent.h:38
DB_EDGEVIS_SDK int32_t GetTopOffsetPercentage() const
Get the top position of this component within the received YCbCrFrame as a percentage of the received...
DB_EDGEVIS_SDK int32_t GetInput() const
Get the source input that provides the frames for this component.
DB_EDGEVIS_SDK int32_t GetLeftOffsetPercentage() const
Get the left position of this component within the received YCbCrFrame as a percentage of the receive...
DB_EDGEVIS_SDK int32_t GetHeightPercentage() const
Get the height of this component within the received YCbCrFrame as a percentage of the received YCbCr...
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK int32_t GetWidthPercentage() const
Get the width of this component within the received YCbCrFrame as a percentage of the received YCbCrF...