className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 3
36
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
FVideoDecoder::GetAllocationInterfaceMethods | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | void * GetAllocationInterfaceMethods() | [] |
|
EDecodeResult | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | enum EDecodeResult { Success, Failure, } | [] |
|
ReleaseDecoderAllocationInterfaceCallback | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< void(void *, void **)> ReleaseDecoderAllocationInterfaceCallback | [] |
|
FVideoDecoder::ReleaseDecoderAllocationInterface | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | void ReleaseDecoderAllocationInterface() | [] |
|
FVideoDecoder::SetOnDecodedFrame | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | virtual void SetOnDecodedFrame ( [OnDecodedFrameCallback](API\Runtime\AVEncoder\FVideoDecoder\OnDecodedFrameCallback) InCallback ) | [] |
|
FVideoDecoder::Shutdown | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | Shuts the decoder down AND destroys it. Do not store a pointer to this decoder in a smart pointer! | AVEncoder | void Shutdown() | [] |
FVideoDecoder::Setup | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | Setup | AVEncoder | bool Setup ( const [FInit](API\Runtime\AVEncoder\FVideoDecoder\FInit) & InInit ) | [] |
OnDecodedFrameCallback | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< void(const [FVideoDecoderOutput](API\Runtime\AVEncoder\FVideoDecoderOutput) *)> OnDecodedFrameCallback | [] |
|
FVideoDecoder::FVideoDecoder | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | FVideoDecoder() | [] |
|
FVideoDecoder::~FVideoDecoder | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | virtual ~FVideoDecoder() | [] |
|
FVideoDecoder | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h | AVEncoder | class FVideoDecoder | [
{
"type": "CreateDecoderAl...",
"name": "CreateDecoderAllocationInterfaceFN",
"description": ""
},
{
"type": "OnDecodedFrameC...",
"name": "OnDecodedFrame",
"description": ""
},
{
"type": "FPlatformDecode...",
"name": "PlatformDecoderAllocInterface",
"description": ""
},
{
"type": "ReleaseDecoderA...",
"name": "ReleaseDecoderAllocationInterfaceFN",
"description": ""
}
] |
|
FVideoDecoderAllocFrameBufferParams | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderAllocationTypes.h | Video frame buffer allocation parameters. | AVEncoder | struct FVideoDecoderAllocFrameBufferParams | [
{
"type": "int32_t",
"name": "AllocAlignment",
"description": ""
},
{
"type": "int32_t",
"name": "AllocFlags",
"description": ""
},
{
"type": "int32_t",
"name": "AllocSize",
"description": "Number of bytes to allocate with the specified alignment."
},
{
"type": "int32_t",
"name": "BytesPerPixel",
"description": ""
},
{
"type": "void **",
"name": "ExtraCustomParameters",
"description": "Extra custom parameters (platform specific)"
},
{
"type": "EFrameBufferTyp...",
"name": "FrameBufferType",
"description": "Type of output frame buffer to allocate"
},
{
"type": "int32_t",
"name": "Height",
"description": ""
},
{
"type": "int32_t",
"name": "Width",
"description": "Dimensions to allocate raw buffer for."
}
] |
FVideoDecoderAllocFrameBufferResult | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderAllocationTypes.h | Result structure to be filled in by the application. | AVEncoder | struct FVideoDecoderAllocFrameBufferResult | [
{
"type": "void *",
"name": "AllocatedBuffer",
"description": "The buffer the application has allocated."
},
{
"type": "FFrameBufferOut...",
"name": "AllocatedPlaneDesc",
"description": ""
},
{
"type": "int32_t",
"name": "AllocatedPlaneLayout",
"description": ""
},
{
"type": "int32_t",
"name": "AllocatedPlanesNum",
"description": "Information of the allocated buffer planes, if applicable (depending on frame buffer type to allocate)."
},
{
"type": "int32_t",
"name": "AllocatedSize",
"description": "The actual buffer size the application has allocated."
},
{
"type": "void *",
"name": "CallbackValue",
"description": "Buffer callback user value (a 'this' pointer to something within the application) for the retain and release callbacks."
},
{
"type": "FReleaseFrameBu...",
"name": "ReleaseCallback",
"description": "Callback within the application to release the allocated buffer."
},
{
"type": "FRetainFrameBuf...",
"name": "RetainCallback",
"description": "Callback within the application to retain the allocated buffer."
}
] |
bDebugDontRegisterDefaultCodecs | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | AVEncoder | static bool bDebugDontRegisterDefaultCodecs = false; | [] |
|
FVideoDecoderFactory::Create | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | Decoder creation create a decoder instance. If not nullptr it must be destroyed through invoking its Shutdown() method! | AVEncoder | [FVideoDecoder](API\Runtime\AVEncoder\FVideoDecoder) * Create ( uint32 InID, const FVideoDecoder::FInit & InInit ) | [] |
CreateDecoderCallback | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | The callback type used to create a registered decoder | AVEncoder | typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< [FVideoDecoder](API\Runtime\AVEncoder\FVideoDecoder) *()> CreateDecoderCallback | [] |
FVideoDecoderFactory::Debug_SetDontRegisterDefaultCodecs | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | AVEncoder | static void Debug_SetDontRegisterDefaultCodecs() | [] |
|
FVideoDecoderFactory::Get | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | AVEncoder | static [FVideoDecoderFactory](API\Runtime\AVEncoder\FVideoDecoderFactory) & Get() | [] |
|
FVideoDecoderFactory::GetAvailable | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | Get a list of registered decoders | AVEncoder | const [TArray](API\Runtime\Core\Containers\TArray)< [FVideoDecoderInfo](API\Runtime\AVEncoder\FVideoDecoderInfo) > & GetAvailable() const | [] |
FVideoDecoderFactory::GetInfo | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | AVEncoder | bool GetInfo ( uint32 InID, [FVideoDecoderInfo](API\Runtime\AVEncoder\FVideoDecoderInfo) & OutInfo ) const | [] |
|
NextID | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | AVEncoder | static [FThreadSafeCounter](API\Runtime\Core\HAL\FThreadSafeCounter) NextID = 1; | [] |
|
FVideoDecoderFactory::Register | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | Register a decoder so that it can be iterated and created | AVEncoder | void Register ( const [FVideoDecoderInfo](API\Runtime\AVEncoder\FVideoDecoderInfo) & InInfo, const [CreateDecoderCallback](API\Runtime\AVEncoder\FVideoDecoderFactory\CreateDecoderCallback) & InCreateDecoder ) | [] |
FVideoDecoderFactory | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h | No destructors are accessible with public or protected access. | AVEncoder | class FVideoDecoderFactory | [] |
FVideoDecoderInfo | /Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h | AVEncoder | struct FVideoDecoderInfo | [
{
"type": "ECodecType",
"name": "CodecType",
"description": ""
},
{
"type": "uint32",
"name": "ID",
"description": ""
},
{
"type": "uint32",
"name": "MaxHeight",
"description": ""
},
{
"type": "uint32",
"name": "MaxWidth",
"description": ""
}
] |
|
FVideoDecoderInput::Create | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | static [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoDecoderInput](API\Runtime\AVEncoder\FVideoDecoderInput) > Create ( const [FInputData](API\Runtime\AVEncoder\FVideoDecoderInput\FInputData) & InInputData ) | [] |
|
FInputData | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | struct FInputData | [
{
"type": "bool",
"name": "bIsComplete",
"description": ""
},
{
"type": "bool",
"name": "bIsKeyframe",
"description": ""
},
{
"type": "bool",
"name": "bMissingFrames",
"description": ""
},
{
"type": "int32",
"name": "ContentType",
"description": ""
},
{
"type": "const void *...",
"name": "EncodedData",
"description": ""
},
{
"type": "int32",
"name": "EncodedDataSize",
"description": ""
},
{
"type": "int32",
"name": "Height",
"description": ""
},
{
"type": "int64",
"name": "PTS",
"description": ""
},
{
"type": "int32",
"name": "Rotation",
"description": ""
},
{
"type": "int32",
"name": "Width",
"description": ""
}
] |
|
FVideoDecoderInput::GetContentType | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetContentType() const | [] |
|
FVideoDecoderInput::GetData | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | const void * GetData() const | [] |
|
FVideoDecoderInput::GetDataSize | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetDataSize() const | [] |
|
FVideoDecoderInput::GetHeight | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetHeight() const | [] |
|
FVideoDecoderInput::GetPTS | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int64 GetPTS() const | [] |
|
FVideoDecoderInput::GetRotation | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetRotation() const | [] |
|
FVideoDecoderInput::GetWidth | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetWidth() const | [] |
|
FVideoDecoderInput::IsCompleteFrame | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | bool IsCompleteFrame() const | [] |
|
FVideoDecoderInput::HasMissingFrames | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | bool HasMissingFrames() const | [] |
|
FVideoDecoderInput::IsKeyframe | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | bool IsKeyframe() const | [] |
|
FVideoDecoderInput::operator= | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | [FVideoDecoderInput](API\Runtime\AVEncoder\FVideoDecoderInput) & operator= ( const [FVideoDecoderInput](API\Runtime\AVEncoder\FVideoDecoderInput) & ) | [] |
|
FVideoDecoderInput::FVideoDecoderInput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | FVideoDecoderInput() | [] |
|
FVideoDecoderInput::FVideoDecoderInput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | FVideoDecoderInput ( const [FVideoDecoderInput](API\Runtime\AVEncoder\FVideoDecoderInput) & ) | [] |
|
FVideoDecoderInput::~FVideoDecoderInput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | virtual ~FVideoDecoderInput() | [] |
|
FVideoDecoderInput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | class FVideoDecoderInput | [] |
|
FVideoDecoderOutput::AddRef | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 AddRef() | [] |
|
FVideoDecoderOutput::GetAllocatedBuffer | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | const [FVideoDecoderAllocFrameBufferResult](API\Runtime\AVEncoder\FVideoDecoderAllocFrameBufferRes-) * GetAllocatedBuffer() const | [] |
|
FVideoDecoderOutput::GetAspectX | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetAspectX() const | [] |
|
FVideoDecoderOutput::GetAspectY | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetAspectY() const | [] |
|
FVideoDecoderOutput::GetColorFormat | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | uint32 GetColorFormat() const | [] |
|
FVideoDecoderOutput::GetCropBottom | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetCropBottom() const | [] |
|
FVideoDecoderOutput::GetCropLeft | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetCropLeft() const | [] |
|
FVideoDecoderOutput::GetCropRight | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetCropRight() const | [] |
|
FVideoDecoderOutput::GetCropTop | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetCropTop() const | [] |
|
FVideoDecoderOutput::GetHeight | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetHeight() const | [] |
|
FVideoDecoderOutput::GetPitchX | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetPitchX() const | [] |
|
FVideoDecoderOutput::GetPitchY | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetPitchY() const | [] |
|
FVideoDecoderOutput::GetPTS | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int64 GetPTS() const | [] |
|
FVideoDecoderOutput::GetWidth | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 GetWidth() const | [] |
|
FVideoDecoderOutput::Release | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | int32 Release() | [] |
|
FVideoDecoderOutput::FVideoDecoderOutput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | FVideoDecoderOutput() | [] |
|
FVideoDecoderOutput::FVideoDecoderOutput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | FVideoDecoderOutput ( const [FVideoDecoderOutput](API\Runtime\AVEncoder\FVideoDecoderOutput) & ) | [] |
|
FVideoDecoderOutput::operator= | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | [FVideoDecoderOutput](API\Runtime\AVEncoder\FVideoDecoderOutput) & operator= ( const [FVideoDecoderOutput](API\Runtime\AVEncoder\FVideoDecoderOutput) & ) | [] |
|
FVideoDecoderOutput::~FVideoDecoderOutput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | virtual ~FVideoDecoderOutput() | [] |
|
FVideoDecoderOutput | /Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h | AVEncoder | class FVideoDecoderOutput | [] |
|
FVideoEncoder::AddLayer | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual bool AddLayer ( [FLayerConfig](API\Runtime\AVEncoder\FVideoEncoder\FLayerConfig) const & config ) | [] |
|
FVideoEncoder::ClearOnEncodedPacket | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | void ClearOnEncodedPacket() | [] |
|
FVideoEncoder::CreateLayer | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual [FLayer](API\Runtime\AVEncoder\FVideoEncoder\FLayer) * CreateLayer ( uint32 layerIdx, [FLayerConfig](API\Runtime\AVEncoder\FVideoEncoder\FLayerConfig) const & config ) | [] |
|
FVideoEncoder::DestroyLayer | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual void DestroyLayer ( [FLayer](API\Runtime\AVEncoder\FVideoEncoder\FLayer) * layer ) | [] |
|
FVideoEncoder::Encode | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual void Encode ( const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoEncoderInputFrame](API\Runtime\AVEncoder\FVideoEncoderInputFrame) > frame, [FEncodeOptions](API\Runtime\AVEncoder\FVideoEncoder\FEncodeOptions) const & options ) | [] |
|
FEncodeOptions | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | struct FEncodeOptions | [
{
"type": "bool",
"name": "bForceKeyFrame",
"description": ""
},
{
"type": "OnFrameEncodedC...",
"name": "OnFrameEncoded",
"description": ""
}
] |
|
FVideoEncoder::FLayer::GetConfig | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | FLayerConfig const & GetConfig&40;&41; const | [] |
|
FVideoEncoder::FLayer::UpdateConfig | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | void UpdateConfig &40; FLayerConfig const & config &41; | [] |
|
FVideoEncoder::FLayer::FLayer | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | FLayer &40; FLayerConfig const & layerConfig &41; | [] |
|
FLayer | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | class FLayer | [
{
"type": "FCriticalSectio...",
"name": "ConfigMutex",
"description": ""
},
{
"type": "FLayerConfig",
"name": "CurrentConfig",
"description": ""
},
{
"type": "bool",
"name": "NeedsReconfigure",
"description": ""
}
] |
|
FVideoEncoder::FLayer::~FLayer | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual &126;FLayer&40;&41; | [] |
|
FVideoEncoder::FLayerConfig::operator== | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | bool operator&61;&61; &40; FLayerConfig const & other &41; const | [] |
|
FVideoEncoder::FLayerConfig::operator!= | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | bool operator&33;&61; &40; FLayerConfig const & other &41; const | [] |
|
FLayerConfig | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | struct FLayerConfig | [
{
"type": "bool",
"name": "FillData",
"description": ""
},
{
"type": "H264Profile",
"name": "H264Profile",
"description": ""
},
{
"type": "uint32",
"name": "Height",
"description": ""
},
{
"type": "int32",
"name": "MaxBitrate",
"description": ""
},
{
"type": "uint32",
"name": "MaxFramerate",
"description": ""
},
{
"type": "MultipassMode",
"name": "MultipassMode",
"description": ""
},
{
"type": "int32",
"name": "QPMax",
"description": ""
},
{
"type": "int32",
"name": "QPMin",
"description": ""
},
{
"type": "RateControlMode",
"name": "RateControlMode",
"description": ""
},
{
"type": "int32",
"name": "TargetBitrate",
"description": ""
},
{
"type": "uint32",
"name": "Width",
"description": ""
}
] |
|
FVideoEncoder::GetLayerConfig | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | [FLayerConfig](API\Runtime\AVEncoder\FVideoEncoder\FLayerConfig) GetLayerConfig ( uint32 layerIdx ) const | [] |
|
FVideoEncoder::GetNumLayers | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | uint32 GetNumLayers() const | [] |
|
FVideoEncoder::GetMaxLayers | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual uint32 GetMaxLayers() const | [] |
|
MultipassMode | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | enum MultipassMode { UNKNOWN, DISABLED, QUARTER, FULL, } | [] |
|
H264Profile | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | enum H264Profile { AUTO, CONSTRAINED_BASELINE, BASELINE, MAIN, CONSTRAINED_HIGH, HIGH, HIGH444, STEREO, SVC_TEMPORAL_SCALABILITY, PROGRESSIVE_HIGH, } | [] |
|
OnEncodedPacketCallback | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< void(uint32, const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoEncoderInputFrame](API\Runtime\AVEncoder\FVideoEncoderInputFrame) >, const [FCodecPacket](API\Runtime\AVEncoder\FCodecPacket) &)> OnEncodedPacketCallback | [] |
|
OnFrameEncodedCallback | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< void(const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoEncoderInputFrame](API\Runtime\AVEncoder\FVideoEncoderInputFrame) >)> OnFrameEncodedCallback | [] |
|
RateControlMode | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | enum RateControlMode { UNKNOWN, CONSTQP, VBR, CBR, } | [] |
|
FVideoEncoder::SetOnEncodedPacket | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | void SetOnEncodedPacket ( [OnEncodedPacketCallback](API\Runtime\AVEncoder\FVideoEncoder\OnEncodedPacketCallback) callback ) | [] |
|
FVideoEncoder::Setup | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual bool Setup ( [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [FVideoEncoderInput](API\Runtime\AVEncoder\FVideoEncoderInput) > input, [FLayerConfig](API\Runtime\AVEncoder\FVideoEncoder\FLayerConfig) const & config ) | [] |
|
FVideoEncoder::Shutdown | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual void Shutdown() | [] |
|
FVideoEncoder::UpdateLayerConfig | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | void UpdateLayerConfig ( uint32 layerIdx, [FLayerConfig](API\Runtime\AVEncoder\FVideoEncoder\FLayerConfig) const & config ) | [] |
|
FVideoEncoder::FVideoEncoder | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | FVideoEncoder() | [] |
|
FVideoEncoder::~FVideoEncoder | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | virtual ~FVideoEncoder() | [] |
|
FVideoEncoderFactory::Create | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< [FVideoEncoder](API\Runtime\AVEncoder\FVideoEncoder) > Create ( uint32 InID, const FVideoEncoder::FLayerConfig & config ) | [] |
|
FVideoEncoder | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h | AVEncoder | class FVideoEncoder | [
{
"type": "TArray<FLayer...",
"name": "Layers",
"description": ""
},
{
"type": "OnEncodedPacket...",
"name": "OnEncodedPacket",
"description": ""
}
] |
|
FVideoEncoderFactory::Create | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< [FVideoEncoder](API\Runtime\AVEncoder\FVideoEncoder) > Create ( uint32 InID, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoEncoderInput](API\Runtime\AVEncoder\FVideoEncoderInput) > InInput, const FVideoEncoder::FLayerConfig & config ) | [] |
|
CreateEncoderCallback | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | The callback type used to create a registered encoder | AVEncoder | typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< [FVideoEncoder](API\Runtime\AVEncoder\FVideoEncoder) >()> CreateEncoderCallback | [] |
FVideoEncoderFactory::Debug_SetDontRegisterDefaultCodecs | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | static void Debug_SetDontRegisterDefaultCodecs() | [] |
|
FVideoEncoderFactory::Get | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | static [FVideoEncoderFactory](API\Runtime\AVEncoder\FVideoEncoderFactory) & Get() | [] |
|
FVideoEncoderFactory::HasEncoderForCodec | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | bool HasEncoderForCodec ( [ECodecType](API\Runtime\AVEncoder\AVEncoder__ECodecType) CodecType ) const | [] |
|
FVideoEncoderFactory::GetInfo | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | bool GetInfo ( uint32 InID, [FVideoEncoderInfo](API\Runtime\AVEncoder\FVideoEncoderInfo) & OutInfo ) const | [] |
|
FVideoEncoderFactory::IsSetup | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | bool IsSetup() const | [] |
|
NextID | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | AVEncoder | static [FThreadSafeCounter](API\Runtime\Core\HAL\FThreadSafeCounter) NextID = 4711; | [] |
|
FVideoEncoderFactory::Register | /Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h | Register an encoder so that it can be iterated and created | AVEncoder | void Register ( const [FVideoEncoderInfo](API\Runtime\AVEncoder\FVideoEncoderInfo) & InInfo, const [CreateEncoderCallback](API\Runtime\AVEncoder\FVideoEncoderFactory\CreateEncoderCallback) & InCreateEncoder ) | [] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.