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
|
---|---|---|---|---|---|
TPooledAudioResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/Audio/AudioResource.h | A simple pool-based resolvable audio resource. The contents of the pool must be manually managed by the application. | AVCodecsCore | template<typename TResource> class TPooledAudioResource : public [TResolvable< TResource >](API\Plugins\AVCodecsCore\TResolvable) | [
{
"type": "TArray<TShared...",
"name": "Pool",
"description": ""
}
] |
TPooledAudioResource::TryResolve | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/Audio/AudioResource.h | AVCodecsCore | virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TResource > TryResolve ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FAVDevice](API\Plugins\AVCodecsCore\FAVDevice) > const & Device, [FAudioDescriptor](API\Plugins\AVCodecsCore\Audio\FAudioDescriptor) const & Descriptor ) | [] |
|
TResolvableAudioResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/Audio/AudioResource.h | Wrapper for resolvable audio resources. | AVCodecsCore | typedef [TResolvable](API\Plugins\AVCodecsCore\TResolvable)< TResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FAVDevice](API\Plugins\AVCodecsCore\FAVDevice) >, [FAudioDescriptor](API\Plugins\AVCodecsCore\Audio\FAudioDescriptor) > TResolvableAudioResource | [] |
EAVLatencyMode | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVConfig.h | Latency mode for the AV pipeline. | AVCodecsCore | enum EAVLatencyMode { UltraLowLatency, LowLatency, Default, } | [] |
EAVPreset | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVConfig.h | Simple presets for whole AV pipeline. | AVCodecsCore | enum EAVPreset { UltraLowQuality, LowQuality, Default, HighQuality, Lossless, } | [] |
EAVResult | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResult.h | MAINTAINER NOTE: When adding a new result value, add a matching case statement toToString(EAVResult). | AVCodecsCore | enum EAVResult { Unknown = 0, Fatal = 1000, FatalUnsupported, Error = 2000, ErrorUnsupported, ErrorInvalidState, ErrorCreating, ErrorDestroying, ErrorResolving, ErrorMapping, ErrorUnmapping, ErrorLocking, ErrorUnlocking, Warning = 3000, WarningInvalidState, Pending = 4000, PendingInput, PendingOutput, Success = 5000, } | [] |
FAPI::Get | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | Gets or creates an API of a specific type.
Direct reference to the typed API. | AVCodecsCore | template<typename TAPI, typename [TEnableIf](API\Runtime\Core\Templates\TEnableIf)< [TIsDerivedFrom](API\Runtime\Core\Templates\TIsDerivedFrom)< TAPI, [FAPI](API\Plugins\AVCodecsCore\FAPI) >::Value, int >::type> static TAPI const & Get() | [] |
FAPI::IsValid | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | Test if the API loaded correctly, or has since been cleaned up.
True if the API is valid. | AVCodecsCore | bool IsValid() const | [] |
FAPI::Shutdown | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | Clean up an API of a specific type. | AVCodecsCore | template<typename TAPI, typename [TEnableIf](API\Runtime\Core\Templates\TEnableIf)< [TIsDerivedFrom](API\Runtime\Core\Templates\TIsDerivedFrom)< TAPI, [FAPI](API\Plugins\AVCodecsCore\FAPI) >::Value, int >::type> static void Shutdown() | [] |
Singletons | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | Type-erased map of API singletons. | AVCodecsCore | static [TTypeMap](API\Plugins\AVCodecsCore\TTypeMap)< [FAPI](API\Plugins\AVCodecsCore\FAPI) > Singletons; | [] |
FAPI::FAPI | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | AVCodecsCore | FAPI() | [] |
|
FAPI::~FAPI | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | AVCodecsCore | virtual ~FAPI() | [] |
|
FAPI | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVUtility.h | API abstraction with static singletons. | AVCodecsCore | class FAPI | [] |
FAVConfig::FAVConfig | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVConfig.h | AVCodecsCore | FAVConfig ( [EAVPreset](API\Plugins\AVCodecsCore\EAVPreset) Preset ) | [] |
|
FAVConfig | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVConfig.h | Base struct for codec configuration. | AVCodecsCore | struct FAVConfig | [
{
"type": "EAVLatencyMode",
"name": "LatencyMode",
"description": ""
},
{
"type": "EAVPreset",
"name": "Preset",
"description": ""
}
] |
FAVContext::~FAVContext | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVContext.h | AVCodecsCore | virtual ~FAVContext() | [] |
|
FAVContext | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVContext.h | Base class for device contexts, for use by resources and platform vendor architecture | AVCodecsCore | class FAVContext | [] |
FAVDevice::GetContext | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | Get a typed context from this device, if it exists.
The context if it exists, an invalid pointer if it does not. | AVCodecsCore | template<typename TContext> [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TContext > const & GetContext() const | [] |
FAVDevice::GetHardwareDevice | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | Get the global hardware device.
The global hardware device atIndex. | AVCodecsCore | static [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [FAVDevice](API\Plugins\AVCodecsCore\FAVDevice) > & GetHardwareDevice ( int32 Index ) | [] |
FAVDevice::GetSoftwareDevice | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | Get the global software device.
The global software device. | AVCodecsCore | static [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [FAVDevice](API\Plugins\AVCodecsCore\FAVDevice) > & GetSoftwareDevice() | [] |
FAVDevice::HasContext | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | Check if this device has a specific context.
Whether this device has a context of that type. | AVCodecsCore | template<typename TContext> bool HasContext() const | [] |
FAVDevice::SetContext | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | Set a context by type on this device. | AVCodecsCore | template<typename TContext> void SetContext ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TContext > const & NewContext ) | [] |
FAVDevice::FAVDevice | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | AVCodecsCore | FAVDevice() | [] |
|
FAVDevice | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | A representation of a physical computer device, be it a GPU or a CPU or an external device, that can hold device resource contexts (Vulkan, D3D, CUDA, etc). | AVCodecsCore | class FAVDevice | [] |
FAVDevice::~FAVDevice | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVDevice.h | AVCodecsCore | virtual ~FAVDevice() | [] |
|
FAVExtension::IsCompatible | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | Usage:TAVCoderfactory for AVResource usage, ie. FAVExtension::IsCompatible(Device);
True if the type is compatible in this context. | AVCodecsCore | template<typename TContext, typename TOption> static bool IsCompatible ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< class [FAVDevice](API\Plugins\AVCodecsCore\FAVDevice) > const & Device ) | [] |
FAVExtension::IsCompatible | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | Usage:TAVCoderfactory for AVConfig usage, ie. FAVExtension::IsCompatible(Instance);
True if the type is compatible in this context. | AVCodecsCore | template<typename TContext, typename TOption> static bool IsCompatible ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< class [FAVInstance](API\Plugins\AVCodecsCore\FAVInstance) > const & Instance ) | [] |
TIsSameHack | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | Versions ofTAndandTOrthat work with std::is_same return values, this is incompatible with TEMPLATE_REQUIRES so we need to still use this construct for now until std::is_same_v is better supported | AVCodecsCore | template<typename A, typename B> struct TIsSameHack | [] |
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | FAVResult. | AVCodecsCore | template<typename TOutput, typename TInput, typename [TEnableIf](API\Runtime\Core\Templates\TEnableIf)< [TOr](API\Runtime\Core\Templates\TOr)< [TIsSameHack](API\Plugins\AVCodecsCore\FAVExtension\TIsSameHack)< TInput, TOutput >, [TNot](API\Runtime\Core\Templates\TNot)< [TIsDerivedFrom](API\Runtime\Core\Templates\TIsDerivedFrom)< TOutput, TInput >>>::Value, int >::type> static [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( TOutput & OutConfig, TInput const & InConfig ) | [] |
Value | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | AVCodecsCore | enum &123; Value = std::is_same_v<A, B> &125; | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Encoders/Configs/VideoEncoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) & OutConfig, [FVideoEncoderConfigH265](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Public/Video/Decoders/Configs/VideoDecoderConfigAMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) & OutConfig, struct [FVideoDecoderConfig](API\Plugins\AVCodecsCore\Video\FVideoDecoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Public/Video/Decoders/Configs/VideoDecoderConfigAMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) & OutConfig, struct [FVideoDecoderConfigH264](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Public/Video/Decoders/Configs/VideoDecoderConfigAMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) & OutConfig, struct [FVideoDecoderConfigH265](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Public/Video/Encoders/Configs/VideoEncoderConfigAMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) & OutConfig, struct [FVideoEncoderConfig](API\Plugins\AVCodecsCore\Video\FVideoEncoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Public/Video/Encoders/Configs/VideoEncoderConfigAMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) & OutConfig, struct [FVideoEncoderConfigH264](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Public/Video/Encoders/Configs/VideoEncoderConfigAMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) & OutConfig, struct [FVideoEncoderConfigH265](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Private/Video/Decoders/Configs/VideoDecoderConfigNVDEC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) & OutConfig, [FVideoDecoderConfig](API\Plugins\AVCodecsCore\Video\FVideoDecoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Private/Video/Decoders/Configs/VideoDecoderConfigNVDEC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfig](API\Plugins\AVCodecsCore\Video\FVideoDecoderConfig) & OutConfig, [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Private/Video/Decoders/Configs/VideoDecoderConfigNVDEC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) & OutConfig, [FVideoDecoderConfigH264](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | Alternate path for upcasting. | AVCodecsCore | template<typename TOutput, typename TInput, typename [TEnableIf](API\Runtime\Core\Templates\TEnableIf)< [TAnd](API\Runtime\Core\Templates\TAnd)< [TNot](API\Runtime\Core\Templates\TNot)< [TIsSameHack](API\Plugins\AVCodecsCore\FAVExtension\TIsSameHack)< TInput, TOutput >>, [TIsDerivedFrom](API\Runtime\Core\Templates\TIsDerivedFrom)< TOutput, TInput >>::Value, int >::type> static [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( TOutput & OutConfig, TInput const & InConfig ) | [] |
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Private/Video/Decoders/Configs/VideoDecoderConfigNVDEC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) & OutConfig, [FVideoDecoderConfigH265](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Public/Video/Decoders/Configs/VideoDecoderConfigNVDEC.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) & OutConfig, struct [FVideoDecoderConfig](API\Plugins\AVCodecsCore\Video\FVideoDecoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Public/Video/Decoders/Configs/VideoDecoderConfigNVDEC.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) & OutConfig, struct [FVideoDecoderConfigH264](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVDEC/Public/Video/Decoders/Configs/VideoDecoderConfigNVDEC.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigNVDEC](API\Plugins\NVDEC\Video\Decoders\Configs\FVideoDecoderConfigNVDEC) & OutConfig, struct [FVideoDecoderConfigH265](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Private/Video/Encoders/Configs/VideoEncoderConfigNVENC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) & OutConfig, [FVideoEncoderConfig](API\Plugins\AVCodecsCore\Video\FVideoEncoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Private/Video/Encoders/Configs/VideoEncoderConfigNVENC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfig](API\Plugins\AVCodecsCore\Video\FVideoEncoderConfig) & OutConfig, [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Private/Video/Encoders/Configs/VideoEncoderConfigNVENC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) & OutConfig, [FVideoEncoderConfigH264](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Private/Video/Encoders/Configs/VideoEncoderConfigNVENC.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) & OutConfig, [FVideoEncoderConfigH265](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Public/Video/Encoders/Configs/VideoEncoderConfigNVENC.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) & OutConfig, struct [FVideoEncoderConfig](API\Plugins\AVCodecsCore\Video\FVideoEncoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Public/Video/Encoders/Configs/VideoEncoderConfigNVENC.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) & OutConfig, struct [FVideoEncoderConfigH264](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Decoders/Configs/VideoDecoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) & OutConfig, [FVideoDecoderConfig](API\Plugins\AVCodecsCore\Video\FVideoDecoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVENC/Public/Video/Encoders/Configs/VideoEncoderConfigNVENC.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigNVENC](API\Plugins\NVENC\Video\Encoders\Configs\FVideoEncoderConfigNVENC) & OutConfig, struct [FVideoEncoderConfigH265](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/WMFCodecs/Source/WMFCodecs/Private/Audio/Encoders/Configs/AudioEncoderConfigWMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FAudioEncoderConfigWMF](API\Plugins\WMFCodecs\Audio\Encoders\Configs\FAudioEncoderConfigWMF) & OutConfig, [FAudioEncoderConfigAAC](API\Plugins\AVCodecsCore\Audio\Encoders\Configs\FAudioEncoderConfigAAC) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/WMFCodecs/Source/WMFCodecs/Public/Audio/Encoders/Configs/AudioEncoderConfigWMF.h | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FAudioEncoderConfigWMF](API\Plugins\WMFCodecs\Audio\Encoders\Configs\FAudioEncoderConfigWMF) & OutConfig, struct [FAudioEncoderConfigAAC](API\Plugins\AVCodecsCore\Audio\Encoders\Configs\FAudioEncoderConfigAAC) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Decoders/Configs/VideoDecoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfig](API\Plugins\AVCodecsCore\Video\FVideoDecoderConfig) & OutConfig, [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Decoders/Configs/VideoDecoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) & OutConfig, [FVideoDecoderConfigH264](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Decoders/Configs/VideoDecoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoDecoderConfigAMF](API\Plugins\AMFCodecs\Video\Decoders\Configs\FVideoDecoderConfigAMF) & OutConfig, [FVideoDecoderConfigH265](API\Plugins\AVCodecsCore\Video\Decoders\Configs\FVideoDecoderConfigH265) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Encoders/Configs/VideoEncoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) & OutConfig, [FVideoEncoderConfig](API\Plugins\AVCodecsCore\Video\FVideoEncoderConfig) const & InConfig ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Encoders/Configs/VideoEncoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) & OutConfig, [FVideoEncoderConfigH264](API\Plugins\AVCodecsCore\Video\Encoders\Configs\FVideoEncoderConfigH264) const & InConfig ) | [] |
|
FAVExtension::TransformResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | FAVResult. | AVCodecsCore | template<typename TOutput, typename TInput, typename [TEnableIf](API\Runtime\Core\Templates\TEnableIf)< < TInput, TOutput >::Value, int >::type> static [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformResource ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TOutput > & OutResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TInput > const & InResource ) | [] |
FAVExtension::TransformResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCoreRHI/Private/Video/Resources/VideoResourceRHI.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformResource ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceRHI](API\Plugins\AVCodecsCoreRHI\Video\Resources\FVideoResourceRHI) > & OutResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceCPU](API\Plugins\AVCodecsCore\Video\Resources\FVideoResourceCPU) > const & InResource ) | [] |
|
FAVExtension::TransformResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | Shortcut case for above for when the input and output types match. This does NOT duplicate the resource. | AVCodecsCore | template<typename TOutput, typename TInput, typename [TEnableIf](API\Runtime\Core\Templates\TEnableIf)< [TIsDerivedFrom](API\Runtime\Core\Templates\TIsDerivedFrom)< TInput, TOutput >::Value, int >::type> static [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformResource ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TOutput > & OutResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TInput > const & InResource ) | [] |
FAVExtension::TransformResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCoreRHI/Private/Video/Resources/VideoResourceRHI.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformResource ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceVulkan](API\Plugins\AVCodecsCore\Video\Resources\FVideoResourceVulkan) > & OutResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceRHI](API\Plugins\AVCodecsCoreRHI\Video\Resources\FVideoResourceRHI) > const & InResource ) | [] |
|
FAVExtension::TransformConfig | /Engine/Plugins/Experimental/AVCodecs/AMFCodecs/Source/AMFCodecs/Private/Video/Encoders/Configs/VideoEncoderConfigAMF.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformConfig ( [FVideoEncoderConfig](API\Plugins\AVCodecsCore\Video\FVideoEncoderConfig) & OutConfig, [FVideoEncoderConfigAMF](API\Plugins\AMFCodecs\Video\Encoders\Configs\FVideoEncoderConfigAMF) const & InConfig ) | [] |
|
FAVExtension::TransformResource | /Engine/Plugins/Experimental/AVCodecs/NVCodecs/Source/NVCodecs/Private/Video/Resources/VideoResourceCUDA.cpp | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformResource ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceCUDA](API\Plugins\NVCodecs\Video\Resources\FVideoResourceCUDA) > & OutResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceVulkan](API\Plugins\AVCodecsCore\Video\Resources\FVideoResourceVulkan) > const & InResource ) | [] |
|
FAVExtension::TransformResource | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCoreRHI/Public/Video/Resources/VideoResourceRHI.h | Handles pixel format or colorspace transformations | AVCodecsCore | template<> [FAVResult](API\Plugins\AVCodecsCore\FAVResult) TransformResource ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FVideoResourceRHI](API\Plugins\AVCodecsCoreRHI\Video\Resources\FVideoResourceRHI) > & OutResource, [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< class [FVideoResourceRHI](API\Plugins\AVCodecsCoreRHI\Video\Resources\FVideoResourceRHI) > const & InResource ) | [] |
FAVExtension::FAVExtension | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | AVCodecsCore | FAVExtension() | [] |
|
FAVInstance::Edit | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Get a mutable reference to typed data held on this instance. Will create default data of this type if it does not already exist.
The typed data. | AVCodecsCore | template<typename TData> TData & Edit() | [] |
FAVExtension | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVExtension.h | Be sure to EXPORT the definition and it will be automatically linked by consumers. Static extension system for simple composition of different resource/config types, via exported specializations | AVCodecsCore | struct FAVExtension | [] |
FAVInstance::Add | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Add default data by type to this instance. | AVCodecsCore | template<typename TData> void Add() | [] |
FAVInstance::Get | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Get typed data from this instance. Will create default data of this type if it does not already exist.
The typed data. | AVCodecsCore | template<typename TData> TData const & Get() | [] |
FAVInstance::Remove | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Remove a specific type of data from this instance. | AVCodecsCore | template<typename TData> void Remove() | [] |
FAVInstance::Has | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Check if this instance has a specific type of data.
Whether this instance has data of that type. | AVCodecsCore | template<typename TData> bool Has() const | [] |
FAVInstance::Set | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Set data by type on this instance. | AVCodecsCore | template<typename TData> void Set ( TData const & NewData ) | [] |
FAVInstance::TryEdit | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Check if this instance has a specific type of data, and return a mutable reference to it if it exists.
A pointer to the data, if it exists. Not valid outside of the scope from which this is called. | AVCodecsCore | template<typename TData> TData * TryEdit() | [] |
FAVInstance::TryGet | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | Check if this instance has a specific type of data, and return it if it exists.
Whether the instance has data of the type. | AVCodecsCore | template<typename TData> bool TryGet ( TData & OutData ) | [] |
FAVInstance::FAVInstance | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | AVCodecsCore | FAVInstance() | [] |
|
FAVInstance::~FAVInstance | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | AVCodecsCore | virtual ~FAVInstance() | [] |
|
FAVInstance | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVInstance.h | The shared data and logic of a single logical pipeline, usually one or more coders. | AVCodecsCore | class FAVInstance | [] |
FAVLayout::operator== | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVLayout.h | AVCodecsCore | bool operator== ( [FAVLayout](API\Plugins\AVCodecsCore\FAVLayout) const & RHS ) const | [] |
|
FAVLayout::operator!= | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVLayout.h | AVCodecsCore | bool operator!= ( [FAVLayout](API\Plugins\AVCodecsCore\FAVLayout) const & RHS ) const | [] |
|
FAVLayout::FAVLayout | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVLayout.h | AVCodecsCore | FAVLayout() | [] |
|
FAVLayout::FAVLayout | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVLayout.h | AVCodecsCore | FAVLayout ( uint32 Stride, uint32 Offset, uint32 Size ) | [] |
|
FAVLayout | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVLayout.h | This struct defines the memory footprint of a block of data. | AVCodecsCore | struct FAVLayout | [
{
"type": "uint32",
"name": "Offset",
"description": ""
},
{
"type": "uint32",
"name": "Size",
"description": ""
},
{
"type": "uint32",
"name": "Stride",
"description": ""
}
] |
FAVPacket::IsEmpty | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVPacket.h | Test whether raw data is empty or not set.
True if raw data is empty or not set. | AVCodecsCore | bool IsEmpty() const | [] |
FAVPacket::GetData | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVPacket.h | Convenience wrapper to treat raw data as an array view.
Raw data as an array view. | AVCodecsCore | TArrayView64< uint8 > GetData() const | [] |
FAVPacket::WriteToFile | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVPacket.h | AVCodecsCore | void WriteToFile ( TCHAR * FileName ) const | [] |
|
FAVPacket::FAVPacket | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVPacket.h | AVCodecsCore | FAVPacket() | [] |
|
FAVPacket::FAVPacket | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVPacket.h | AVCodecsCore | FAVPacket ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< uint8 > const & DataPtr, uint64 DataSize, uint64 Timestamp, uint64 Index ) | [] |
|
FAVPacket | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVPacket.h | Base container for raw encoded AV resources, created by encoders and consumed by decoders. Can be treated like a networking packet, where the encoder and decoder are separate machines and communicate only through this medium. | AVCodecsCore | struct FAVPacket | [
{
"type": "TSharedPtr< uin...",
"name": "DataPtr",
"description": "Safe pointer to packet data."
},
{
"type": "uint64",
"name": "DataSize",
"description": "Size of packet data."
},
{
"type": "uint64",
"name": "Index",
"description": "Packet index in the sequence."
},
{
"type": "uint64",
"name": "Timestamp",
"description": "Timestamp of packet."
}
] |
FAVResource::GetDevice | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Get a reference to our device parent. Is always valid. | AVCodecsCore | [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [FAVDevice](API\Plugins\AVCodecsCore\FAVDevice) > const & GetDevice() const | [] |
FAVResource::GetLayout | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Get the layout of our data in device memory. | AVCodecsCore | [FAVLayout](API\Plugins\AVCodecsCore\FAVLayout) const & GetLayout() const | [] |
FAVResource::GetMemorySize | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Get the size of our data in device memory. | AVCodecsCore | uint64 GetMemorySize() const | [] |
FAVResource::GetOffset | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Get the offset of our data in device memory. | AVCodecsCore | uint64 GetOffset() const | [] |
FAVResource::GetStride | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Get the stride of our data in device memory. | AVCodecsCore | uint64 GetStride() const | [] |
FAVResource::Lock | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Lock this resource for internal use. Is a blocking call until the lock can be taken. | AVCodecsCore | virtual void Lock() | [] |
FAVResource::LockScope | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Lock this resource for internal use, within the current scope. Is a blocking call until the lock can be taken.
The lock object. Capture this, because when it goes out of scope it will unlock the resource. | AVCodecsCore | virtual [FScopeLock](API\Runtime\Core\Misc\FScopeLock) LockScope() | [] |
FAVResource::PinMapping | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Create a mapping of this resource to another resource (or other object). Returned reference must then be set by the caller.
Shared pointer reference to the mapping, initially invalid until set by the caller. | AVCodecsCore | template<typename TMapping> [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< TMapping > & PinMapping() | [] |
FAVResource::Unlock | /Engine/Plugins/Experimental/AVCodecs/AVCodecsCore/Source/AVCodecsCore/Public/AVResource.h | Release this resource for external use. | AVCodecsCore | virtual void Unlock() | [] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.