Navigation
API > API/Plugins > API/Plugins/PixelCapture
Buffer class for holding I010 frame data.
| Name | FPixelCaptureBufferI010 |
| Type | class |
| Header File | /Engine/Plugins/Media/PixelCapture/Source/PixelCapture/Public/PixelCaptureBufferI010.h |
| Include Path | #include "PixelCaptureBufferI010.h" |
Syntax
class FPixelCaptureBufferI010 : public IPixelCaptureBuffer
Implements Interfaces
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FPixelCaptureBufferI010
(
const FPixelCaptureBufferI010& Other |
PixelCaptureBufferI010.h | ||
FPixelCaptureBufferI010
(
int InWidth, |
Create an empty buffer of the specified size. | PixelCaptureBufferI010.h |
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~FPixelCaptureBufferI010() |
PixelCaptureBufferI010.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Data | TArray< uint16_t > | PixelCaptureBufferI010.h | ||
| Height | int | PixelCaptureBufferI010.h | ||
| StrideUV | int | PixelCaptureBufferI010.h | ||
| StrideY | int | PixelCaptureBufferI010.h | ||
| Width | int | PixelCaptureBufferI010.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Copy
(
const FPixelCaptureBufferI010& Other |
Copies the given buffer into this buffer. | PixelCaptureBufferI010.h | |
int32 GetDataSizeUV() |
Gets the size of both the U and V planes in bytes. | PixelCaptureBufferI010.h | |
int32 GetDataSizeY() |
Gets the size of the Y plane in bytes. | PixelCaptureBufferI010.h | |
const uint16_t * GetDataU() |
Gets a const pointer to the beginning of the U plane for reading. | PixelCaptureBufferI010.h | |
const uint16_t * GetDataV() |
Gets a const pointer to the beginning of the V plane for reading. | PixelCaptureBufferI010.h | |
const uint16_t * GetDataY() |
Gets a const pointer to the beginning of the Y plane for reading. | PixelCaptureBufferI010.h | |
uint16_t * GetMutableDataU() |
Gets a pointer to the beginning of the U plane for editing. | PixelCaptureBufferI010.h | |
uint16_t * GetMutableDataV() |
Gets a pointer to the beginning of the V plane for editing. | PixelCaptureBufferI010.h | |
uint16_t * GetMutableDataY() |
Gets a pointer to the beginning of the Y plane for editing. | PixelCaptureBufferI010.h | |
int32 GetStrideUV() |
Get the stride of the U and V planes | PixelCaptureBufferI010.h | |
int32 GetStrideY() |
Get the stride of the Y plane | PixelCaptureBufferI010.h |
Overridden from IPixelCaptureBuffer
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual const uint8_t * GetData() |
Gets a const pointer to the beginning of entire buffer for reading. | PixelCaptureBufferI010.h | |
virtual int32 GetFormat() |
Get the Buffer format | PixelCaptureBufferI010.h | |
virtual int32 GetHeight() |
Get the height of the frame | PixelCaptureBufferI010.h | |
virtual uint8_t * GetMutableData() |
Gets a pointer to the beginning of the entire buffer for editing. | PixelCaptureBufferI010.h | |
virtual int64 GetSize() |
Gets the total size of this buffer. | PixelCaptureBufferI010.h | |
virtual int32 GetWidth() |
Get the width of the frame | PixelCaptureBufferI010.h |