unreal-engine-5-code-split / ue5-api-AVEncoder.jsonl
olympusmonsgames's picture
Uploaded 1,226 JSONL files
1c8bcca verified
{"className": "AVEncoder::ECodecType", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h", "description": "", "module": "AVEncoder", "code": "namespace AVEncoder { enum ECodecType { Undefined, H264, MPEG4, VP8, } }", "variables": []}
{"className": "AVEncoder::EH264Profile", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h", "description": "", "module": "AVEncoder", "code": "namespace AVEncoder { enum EH264Profile { UNKNOWN, CONSTRAINED_BASELINE, BASELINE, MAIN, CONSTRAINED_HIGH, HIGH, } }", "variables": []}
{"className": "AVEncoder::EVideoFrameFormat", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h", "description": "", "module": "AVEncoder", "code": "namespace AVEncoder { enum EVideoFrameFormat { Undefined, YUV420P, D3D11_R8G8B8A8_UNORM, D3D12_R8G8B8A8_UNORM, CUDA_R8G8B8A8_UNORM, VULKAN_R8G8B8A8_UNORM, } }", "variables": []}
{"className": "AVEncoder::EPacketType", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/MediaPacket.h", "description": "", "module": "AVEncoder", "code": "namespace AVEncoder { enum EPacketType { Audio, Video, Invalid, } }", "variables": []}
{"className": "AVEncoder::ToString", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h", "description": "", "module": "AVEncoder", "code": "namespace AVEncoder { [FString](API\\Runtime\\Core\\Containers\\FString) AVEncoder::ToString ( [EVideoFrameFormat](API\\Runtime\\AVEncoder\\AVEncoder__EVideoFrameFormat) Format ) }", "variables": []}
{"className": "FAudioByteBuffer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "One sample - one sample byte * NumberBytesPerSample One frame - one sample * NumberChannels One second - one frame * SampleRate The number of samples per seconds - one sample byte * NumberBytesPerSample * NumberChannels * SampleRate", "module": "AVEncoder", "code": "typedef [TArrayView](API\\Runtime\\Core\\Containers\\TArrayView)< const uint8_t > FAudioByteBuffer", "variables": []}
{"className": "FAudioChannelSample", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "There is the declaration of the single audio sample", "module": "AVEncoder", "code": "typedef int16_t FAudioChannelSample", "variables": []}
{"className": "FAudioCodecConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "", "module": "AVEncoder", "code": "struct FAudioCodecConfig", "variables": [{"type": "int32_t", "name": "NumChannels", "description": ""}, {"type": "int32_t", "name": "SampleRate", "description": ""}]}
{"className": "FAudioCodec", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "", "module": "AVEncoder", "code": "struct FAudioCodec", "variables": [{"type": "FAudioCodecConf...", "name": "AudioCodecConfig", "description": ""}, {"type": "OnAudioDecodeCa...", "name": "OnAudioDecodeCallback", "description": ""}, {"type": "OnAudioEncodeCa...", "name": "OnAudioEncodeCallback", "description": ""}]}
{"className": "FAudioConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/MediaPacket.h", "description": "", "module": "AVEncoder", "code": "struct FAudioConfig", "variables": [{"type": "uint32", "name": "Bitrate", "description": ""}, {"type": "FString", "name": "Codec", "description": ""}, {"type": "uint32", "name": "NumChannels", "description": ""}, {"type": "uint32", "name": "Samplerate", "description": ""}]}
{"className": "FAudioEncoder::Encode", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "void Encode ( const [FAudioFrame](API\\Runtime\\AVEncoder\\FAudioFrame) & Frame )", "variables": []}
{"className": "FAudioEncoder::GetConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "[FAudioConfig](API\\Runtime\\AVEncoder\\FAudioConfig) GetConfig() const", "variables": []}
{"className": "FAudioEncoder::GetName", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "const TCHAR * GetName() const", "variables": []}
{"className": "FAudioEncoder::GetType", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "const TCHAR * GetType() const", "variables": []}
{"className": "FAudioEncoder::Initialize", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "bool Initialize ( const [FAudioConfig](API\\Runtime\\AVEncoder\\FAudioConfig) & Config )", "variables": []}
{"className": "FAudioEncoder::OnEncodedAudioFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "void OnEncodedAudioFrame ( const [FMediaPacket](API\\Runtime\\AVEncoder\\FMediaPacket) & Packet )", "variables": []}
{"className": "FAudioEncoder::RegisterListener", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual void RegisterListener ( [IAudioEncoderListener](API\\Runtime\\AVEncoder\\IAudioEncoderListener) & Listener )", "variables": []}
{"className": "FAudioEncoder::Shutdown", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "Shutdown MUST be called before destruction", "module": "AVEncoder", "code": "void Shutdown()", "variables": []}
{"className": "FAudioEncoder::UnregisterListener", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual void UnregisterListener ( [IAudioEncoderListener](API\\Runtime\\AVEncoder\\IAudioEncoderListener) & Listener )", "variables": []}
{"className": "FAudioEncoder::~FAudioEncoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual ~FAudioEncoder()", "variables": []}
{"className": "FAudioEncoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "class FAudioEncoder", "variables": []}
{"className": "FAudioEncoderFactory::CreateEncoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "[TUniquePtr](API\\Runtime\\Core\\Templates\\TUniquePtr)< [FAudioEncoder](API\\Runtime\\AVEncoder\\FAudioEncoder) > CreateEncoder ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Codec )", "variables": []}
{"className": "Factories", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAudioEncoderFactory](API\\Runtime\\AVEncoder\\FAudioEncoderFactory) * > Factories;", "variables": []}
{"className": "FAudioEncoderFactory::FindFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [FAudioEncoderFactory](API\\Runtime\\AVEncoder\\FAudioEncoderFactory) * FindFactory ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Codec )", "variables": []}
{"className": "FAudioEncoderFactory::GetAllFactories", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAudioEncoderFactory](API\\Runtime\\AVEncoder\\FAudioEncoderFactory) * > GetAllFactories()", "variables": []}
{"className": "FAudioEncoderFactory::GetName", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "const TCHAR * GetName() const", "variables": []}
{"className": "FAudioEncoderFactory::GetSupportedCodecs", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "[TArray](API\\Runtime\\Core\\Containers\\TArray)< [FString](API\\Runtime\\Core\\Containers\\FString) > GetSupportedCodecs() const", "variables": []}
{"className": "FAudioEncoderFactory::RegisterFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static void RegisterFactory ( [FAudioEncoderFactory](API\\Runtime\\AVEncoder\\FAudioEncoderFactory) & Factory )", "variables": []}
{"className": "FAudioEncoderFactory::UnregisterFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static void UnregisterFactory ( [FAudioEncoderFactory](API\\Runtime\\AVEncoder\\FAudioEncoderFactory) & Factory )", "variables": []}
{"className": "FAudioEncoderFactory::~FAudioEncoderFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "virtual ~FAudioEncoderFactory()", "variables": []}
{"className": "FAudioEncoderFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "class FAudioEncoderFactory", "variables": []}
{"className": "FAudioFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "struct FAudioFrame", "variables": [{"type": "Audio::TSampleB...", "name": "Data", "description": ""}, {"type": "FTimespan", "name": "Duration", "description": ""}, {"type": "FTimespan", "name": "Timestamp", "description": ""}]}
{"className": "FAudioMuteInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "", "module": "AVEncoder", "code": "struct FAudioMuteInfo", "variables": [{"type": "TOptional<EAud...", "name": "Reason", "description": ""}]}
{"className": "FAudioSampleBuffer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "One frame - one sample * NumberChannels One second - one frame * SampleRate The number of samples per seconds - one sample byte * NumberBytesPerSample * NumberChannels * SampleRate", "module": "AVEncoder", "code": "struct FAudioSampleBuffer", "variables": [{"type": "TArrayView< con...", "name": "AudioSamples", "description": "The sequence of audio samples"}, {"type": "FAudioStreamFor...", "name": "AudioStreamFormat", "description": "The format of audio samples"}]}
{"className": "FAudioStreamFormat", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "Describes the data format of the audio stream", "module": "AVEncoder", "code": "struct FAudioStreamFormat", "variables": [{"type": "uint32_t", "name": "NumberChannels", "description": "The number of channels in the stream"}, {"type": "uint32_t", "name": "SampleRate", "description": "The number of samples per seconds"}]}
{"className": "FCodecPacket::Create", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/CodecPacket.h", "description": "", "module": "AVEncoder", "code": "static [FCodecPacket](API\\Runtime\\AVEncoder\\FCodecPacket) Create ( const uint8 * InData, uint32 InDataSize )", "variables": []}
{"className": "FCodecPacket", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/CodecPacket.h", "description": "No constructors are accessible with public or protected access.", "module": "AVEncoder", "code": "class FCodecPacket", "variables": [{"type": "TSharedPtr< uin...", "name": "Data", "description": ""}, {"type": "uint32", "name": "DataSize", "description": ""}, {"type": "uint32", "name": "Framerate", "description": ""}, {"type": "bool", "name": "IsKeyFrame", "description": ""}, {"type": "FTimings", "name": "Timings", "description": ""}, {"type": "uint32", "name": "VideoQP", "description": ""}]}
{"className": "FTimings", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/CodecPacket.h", "description": "Encoding/Decoding latency", "module": "AVEncoder", "code": "struct FTimings", "variables": [{"type": "FTimespan", "name": "FinishTs", "description": ""}, {"type": "FTimespan", "name": "StartTs", "description": ""}]}
{"className": "FCodecPacket::~FCodecPacket", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/CodecPacket.h", "description": "", "module": "AVEncoder", "code": "virtual ~FCodecPacket()", "variables": []}
{"className": "kDefaultStunServerUrl", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/Configuration.h", "description": "", "module": "AVEncoder", "code": "static kDefaultStunServerUrl = TEXT(\"stun:stun.l.google.com:19302\");", "variables": []}
{"className": "FConfiguration::Get", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/Configuration.h", "description": "", "module": "AVEncoder", "code": "static [FData](API\\Runtime\\AVEncoder\\FConfiguration\\FData) & Get()", "variables": []}
{"className": "FConfiguration", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/Configuration.h", "description": "", "module": "AVEncoder", "code": "struct FConfiguration", "variables": []}
{"className": "FData", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/Configuration.h", "description": "", "module": "AVEncoder", "code": "struct FData", "variables": [{"type": "TOptional<FAud...", "name": "CustomAudioCodec", "description": ""}, {"type": "FString", "name": "StunServerUrl", "description": ""}]}
{"className": "FFrameBufferOutPlaneDesc", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderAllocationTypes.h", "description": "Output buffer plane description.", "module": "AVEncoder", "code": "struct FFrameBufferOutPlaneDesc", "variables": [{"type": "int32_t", "name": "ByteOffsetBetweenPixels", "description": "Offset in bytes between two pixels."}, {"type": "int32_t", "name": "ByteOffsetBetweenRows", "description": "Offset in bytes between the same column in the next row."}, {"type": "int32_t", "name": "ByteOffsetToFirstPixel", "description": "Offset in bytes from the allocated buffer start address to the first pixel of this plane."}, {"type": "int32_t", "name": "BytesPerPixel", "description": "Bytes per pixel."}, {"type": "int32_t", "name": "Height", "description": "Height of the allocated buffer plane in pixels, including necessary padding."}, {"type": "int32_t", "name": "Width", "description": "Width of the allocated buffer plane in pixels, including necessary padding."}]}
{"className": "FIncomingAudioChannelInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "Information which is used to initialize the incoming audio channel", "module": "AVEncoder", "code": "struct FIncomingAudioChannelInfo", "variables": []}
{"className": "FMediaPacket::IsVideoKeyFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/MediaPacket.h", "description": "", "module": "AVEncoder", "code": "bool IsVideoKeyFrame() const", "variables": []}
{"className": "FMediaPacket", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/MediaPacket.h", "description": "", "module": "AVEncoder", "code": "struct FMediaPacket", "variables": [{"type": "union AVEncoder...", "name": "@14730", "description": ""}, {"type": "AVEncoder::FMed...", "name": "Audio", "description": ""}, {"type": "bool", "name": "bKeyFrame", "description": ""}, {"type": "TArray< uint8 >", "name": "Data", "description": ""}, {"type": "FTimespan", "name": "Duration", "description": ""}, {"type": "uint32", "name": "FrameAvgQP", "description": ""}, {"type": "uint32", "name": "Framerate", "description": ""}, {"type": "int32", "name": "Height", "description": ""}, {"type": "FTimespan", "name": "Timestamp", "description": ""}, {"type": "EPacketType", "name": "Type", "description": ""}, {"type": "AVEncoder::FMed...", "name": "Video", "description": ""}, {"type": "int32", "name": "Width", "description": ""}]}
{"className": "FMediaPacket::FMediaPacket", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/MediaPacket.h", "description": "", "module": "AVEncoder", "code": "FMediaPacket ( [EPacketType](API\\Runtime\\AVEncoder\\AVEncoder__EPacketType) TypeIn )", "variables": []}
{"className": "FOutgoingAudioChannelInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "Information which is used to initialize the outgoing audio channel", "module": "AVEncoder", "code": "struct FOutgoingAudioChannelInfo", "variables": [{"type": "bool", "name": "bIsMuted", "description": "Initial muted state of the audio channel"}]}
{"className": "FVideoDecoder::AllocateOutputFrameBuffer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "EFrameBufferAllocReturn AllocateOutputFrameBuffer ( [FVideoDecoderAllocFrameBufferResult](API\\Runtime\\AVEncoder\\FVideoDecoderAllocFrameBufferRes-) * OutBuffer, const [FVideoDecoderAllocFrameBufferParams](API\\Runtime\\AVEncoder\\FVideoDecoderAllocFrameBufferPar-) * InAllocParams )", "variables": []}
{"className": "FVideoConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/MediaPacket.h", "description": "", "module": "AVEncoder", "code": "struct FVideoConfig", "variables": [{"type": "uint32", "name": "Bitrate", "description": ""}, {"type": "FString", "name": "Codec", "description": ""}, {"type": "uint32", "name": "Framerate", "description": ""}, {"type": "uint32", "name": "Height", "description": ""}, {"type": "uint32", "name": "Width", "description": ""}]}
{"className": "FVideoDecoder::ClearOnDecodedFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "virtual void ClearOnDecodedFrame()", "variables": []}
{"className": "CreateDecoderAllocationInterfaceCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(void *, void **)> CreateDecoderAllocationInterfaceCallback", "variables": []}
{"className": "FVideoDecoder::Decode", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "[EDecodeResult](API\\Runtime\\AVEncoder\\FVideoDecoder\\EDecodeResult) Decode ( const [FVideoDecoderInput](API\\Runtime\\AVEncoder\\FVideoDecoderInput) * InInput )", "variables": []}
{"className": "FVideoDecoder::CreateDecoderAllocationInterface", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "bool CreateDecoderAllocationInterface()", "variables": []}
{"className": "FPlatformDecoderAllocInterface", "headerPath": "/Engine/Source/Runtime/AVEncoder/Private/Decoders/VideoDecoder.cpp", "description": "", "module": "AVEncoder", "code": "struct FPlatformDecoderAllocInterface", "variables": [{"type": "FVideoDecoderMe...", "name": "AllocMethods", "description": ""}, {"type": "void *", "name": "ClientData", "description": ""}]}
{"className": "FInit", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "struct FInit", "variables": [{"type": "CreateDecoderAl...", "name": "CreateDecoderAllocationInterface", "description": ""}, {"type": "int32", "name": "Height", "description": ""}, {"type": "ReleaseDecoderA...", "name": "ReleaseDecoderAllocationInterface", "description": ""}, {"type": "int32", "name": "Width", "description": ""}]}
{"className": "FVideoDecoder::GetAllocationInterfaceMethods", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "void * GetAllocationInterfaceMethods()", "variables": []}
{"className": "EDecodeResult", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "enum EDecodeResult { Success, Failure, }", "variables": []}
{"className": "ReleaseDecoderAllocationInterfaceCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(void *, void **)> ReleaseDecoderAllocationInterfaceCallback", "variables": []}
{"className": "FVideoDecoder::ReleaseDecoderAllocationInterface", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "void ReleaseDecoderAllocationInterface()", "variables": []}
{"className": "FVideoDecoder::SetOnDecodedFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "virtual void SetOnDecodedFrame ( [OnDecodedFrameCallback](API\\Runtime\\AVEncoder\\FVideoDecoder\\OnDecodedFrameCallback) InCallback )", "variables": []}
{"className": "FVideoDecoder::Shutdown", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "Shuts the decoder down AND destroys it. Do not store a pointer to this decoder in a smart pointer!", "module": "AVEncoder", "code": "void Shutdown()", "variables": []}
{"className": "FVideoDecoder::Setup", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "Setup", "module": "AVEncoder", "code": "bool Setup ( const [FInit](API\\Runtime\\AVEncoder\\FVideoDecoder\\FInit) & InInit )", "variables": []}
{"className": "OnDecodedFrameCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(const [FVideoDecoderOutput](API\\Runtime\\AVEncoder\\FVideoDecoderOutput) *)> OnDecodedFrameCallback", "variables": []}
{"className": "FVideoDecoder::FVideoDecoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "FVideoDecoder()", "variables": []}
{"className": "FVideoDecoder::~FVideoDecoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "virtual ~FVideoDecoder()", "variables": []}
{"className": "FVideoDecoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoder.h", "description": "", "module": "AVEncoder", "code": "class FVideoDecoder", "variables": [{"type": "CreateDecoderAl...", "name": "CreateDecoderAllocationInterfaceFN", "description": ""}, {"type": "OnDecodedFrameC...", "name": "OnDecodedFrame", "description": ""}, {"type": "FPlatformDecode...", "name": "PlatformDecoderAllocInterface", "description": ""}, {"type": "ReleaseDecoderA...", "name": "ReleaseDecoderAllocationInterfaceFN", "description": ""}]}
{"className": "FVideoDecoderAllocFrameBufferParams", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderAllocationTypes.h", "description": "Video frame buffer allocation parameters.", "module": "AVEncoder", "code": "struct FVideoDecoderAllocFrameBufferParams", "variables": [{"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."}]}
{"className": "FVideoDecoderAllocFrameBufferResult", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderAllocationTypes.h", "description": "Result structure to be filled in by the application.", "module": "AVEncoder", "code": "struct FVideoDecoderAllocFrameBufferResult", "variables": [{"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."}]}
{"className": "bDebugDontRegisterDefaultCodecs", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "", "module": "AVEncoder", "code": "static bool bDebugDontRegisterDefaultCodecs = false;", "variables": []}
{"className": "FVideoDecoderFactory::Create", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "Decoder creation create a decoder instance. If not nullptr it must be destroyed through invoking its Shutdown() method!", "module": "AVEncoder", "code": "[FVideoDecoder](API\\Runtime\\AVEncoder\\FVideoDecoder) * Create ( uint32 InID, const FVideoDecoder::FInit & InInit )", "variables": []}
{"className": "CreateDecoderCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "The callback type used to create a registered decoder", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< [FVideoDecoder](API\\Runtime\\AVEncoder\\FVideoDecoder) *()> CreateDecoderCallback", "variables": []}
{"className": "FVideoDecoderFactory::Debug_SetDontRegisterDefaultCodecs", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "", "module": "AVEncoder", "code": "static void Debug_SetDontRegisterDefaultCodecs()", "variables": []}
{"className": "FVideoDecoderFactory::Get", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [FVideoDecoderFactory](API\\Runtime\\AVEncoder\\FVideoDecoderFactory) & Get()", "variables": []}
{"className": "FVideoDecoderFactory::GetAvailable", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "Get a list of registered decoders", "module": "AVEncoder", "code": "const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FVideoDecoderInfo](API\\Runtime\\AVEncoder\\FVideoDecoderInfo) > & GetAvailable() const", "variables": []}
{"className": "FVideoDecoderFactory::GetInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "", "module": "AVEncoder", "code": "bool GetInfo ( uint32 InID, [FVideoDecoderInfo](API\\Runtime\\AVEncoder\\FVideoDecoderInfo) & OutInfo ) const", "variables": []}
{"className": "NextID", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [FThreadSafeCounter](API\\Runtime\\Core\\HAL\\FThreadSafeCounter) NextID = 1;", "variables": []}
{"className": "FVideoDecoderFactory::Register", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "Register a decoder so that it can be iterated and created", "module": "AVEncoder", "code": "void Register ( const [FVideoDecoderInfo](API\\Runtime\\AVEncoder\\FVideoDecoderInfo) & InInfo, const [CreateDecoderCallback](API\\Runtime\\AVEncoder\\FVideoDecoderFactory\\CreateDecoderCallback) & InCreateDecoder )", "variables": []}
{"className": "FVideoDecoderFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderFactory.h", "description": "No destructors are accessible with public or protected access.", "module": "AVEncoder", "code": "class FVideoDecoderFactory", "variables": []}
{"className": "FVideoDecoderInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h", "description": "", "module": "AVEncoder", "code": "struct FVideoDecoderInfo", "variables": [{"type": "ECodecType", "name": "CodecType", "description": ""}, {"type": "uint32", "name": "ID", "description": ""}, {"type": "uint32", "name": "MaxHeight", "description": ""}, {"type": "uint32", "name": "MaxWidth", "description": ""}]}
{"className": "FVideoDecoderInput::Create", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoDecoderInput](API\\Runtime\\AVEncoder\\FVideoDecoderInput) > Create ( const [FInputData](API\\Runtime\\AVEncoder\\FVideoDecoderInput\\FInputData) & InInputData )", "variables": []}
{"className": "FInputData", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "struct FInputData", "variables": [{"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": ""}]}
{"className": "FVideoDecoderInput::GetContentType", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetContentType() const", "variables": []}
{"className": "FVideoDecoderInput::GetData", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "const void * GetData() const", "variables": []}
{"className": "FVideoDecoderInput::GetDataSize", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetDataSize() const", "variables": []}
{"className": "FVideoDecoderInput::GetHeight", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetHeight() const", "variables": []}
{"className": "FVideoDecoderInput::GetPTS", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int64 GetPTS() const", "variables": []}
{"className": "FVideoDecoderInput::GetRotation", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetRotation() const", "variables": []}
{"className": "FVideoDecoderInput::GetWidth", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetWidth() const", "variables": []}
{"className": "FVideoDecoderInput::IsCompleteFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "bool IsCompleteFrame() const", "variables": []}
{"className": "FVideoDecoderInput::HasMissingFrames", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "bool HasMissingFrames() const", "variables": []}
{"className": "FVideoDecoderInput::IsKeyframe", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "bool IsKeyframe() const", "variables": []}
{"className": "FVideoDecoderInput::operator=", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "[FVideoDecoderInput](API\\Runtime\\AVEncoder\\FVideoDecoderInput) & operator= ( const [FVideoDecoderInput](API\\Runtime\\AVEncoder\\FVideoDecoderInput) & )", "variables": []}
{"className": "FVideoDecoderInput::FVideoDecoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoDecoderInput()", "variables": []}
{"className": "FVideoDecoderInput::FVideoDecoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoDecoderInput ( const [FVideoDecoderInput](API\\Runtime\\AVEncoder\\FVideoDecoderInput) & )", "variables": []}
{"className": "FVideoDecoderInput::~FVideoDecoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "virtual ~FVideoDecoderInput()", "variables": []}
{"className": "FVideoDecoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "class FVideoDecoderInput", "variables": []}
{"className": "FVideoDecoderOutput::AddRef", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 AddRef()", "variables": []}
{"className": "FVideoDecoderOutput::GetAllocatedBuffer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "const [FVideoDecoderAllocFrameBufferResult](API\\Runtime\\AVEncoder\\FVideoDecoderAllocFrameBufferRes-) * GetAllocatedBuffer() const", "variables": []}
{"className": "FVideoDecoderOutput::GetAspectX", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetAspectX() const", "variables": []}
{"className": "FVideoDecoderOutput::GetAspectY", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetAspectY() const", "variables": []}
{"className": "FVideoDecoderOutput::GetColorFormat", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "uint32 GetColorFormat() const", "variables": []}
{"className": "FVideoDecoderOutput::GetCropBottom", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetCropBottom() const", "variables": []}
{"className": "FVideoDecoderOutput::GetCropLeft", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetCropLeft() const", "variables": []}
{"className": "FVideoDecoderOutput::GetCropRight", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetCropRight() const", "variables": []}
{"className": "FVideoDecoderOutput::GetCropTop", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetCropTop() const", "variables": []}
{"className": "FVideoDecoderOutput::GetHeight", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetHeight() const", "variables": []}
{"className": "FVideoDecoderOutput::GetPitchX", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetPitchX() const", "variables": []}
{"className": "FVideoDecoderOutput::GetPitchY", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetPitchY() const", "variables": []}
{"className": "FVideoDecoderOutput::GetPTS", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int64 GetPTS() const", "variables": []}
{"className": "FVideoDecoderOutput::GetWidth", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 GetWidth() const", "variables": []}
{"className": "FVideoDecoderOutput::Release", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "int32 Release()", "variables": []}
{"className": "FVideoDecoderOutput::FVideoDecoderOutput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoDecoderOutput()", "variables": []}
{"className": "FVideoDecoderOutput::FVideoDecoderOutput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoDecoderOutput ( const [FVideoDecoderOutput](API\\Runtime\\AVEncoder\\FVideoDecoderOutput) & )", "variables": []}
{"className": "FVideoDecoderOutput::operator=", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "[FVideoDecoderOutput](API\\Runtime\\AVEncoder\\FVideoDecoderOutput) & operator= ( const [FVideoDecoderOutput](API\\Runtime\\AVEncoder\\FVideoDecoderOutput) & )", "variables": []}
{"className": "FVideoDecoderOutput::~FVideoDecoderOutput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "virtual ~FVideoDecoderOutput()", "variables": []}
{"className": "FVideoDecoderOutput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoDecoderInput.h", "description": "", "module": "AVEncoder", "code": "class FVideoDecoderOutput", "variables": []}
{"className": "FVideoEncoder::AddLayer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual bool AddLayer ( [FLayerConfig](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayerConfig) const & config )", "variables": []}
{"className": "FVideoEncoder::ClearOnEncodedPacket", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "void ClearOnEncodedPacket()", "variables": []}
{"className": "FVideoEncoder::CreateLayer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual [FLayer](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayer) * CreateLayer ( uint32 layerIdx, [FLayerConfig](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayerConfig) const & config )", "variables": []}
{"className": "FVideoEncoder::DestroyLayer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual void DestroyLayer ( [FLayer](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayer) * layer )", "variables": []}
{"className": "FVideoEncoder::Encode", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual void Encode ( const [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) > frame, [FEncodeOptions](API\\Runtime\\AVEncoder\\FVideoEncoder\\FEncodeOptions) const & options )", "variables": []}
{"className": "FEncodeOptions", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "struct FEncodeOptions", "variables": [{"type": "bool", "name": "bForceKeyFrame", "description": ""}, {"type": "OnFrameEncodedC...", "name": "OnFrameEncoded", "description": ""}]}
{"className": "FVideoEncoder::FLayer::GetConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "FLayerConfig const & GetConfig&40;&41; const", "variables": []}
{"className": "FVideoEncoder::FLayer::UpdateConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "void UpdateConfig &40; FLayerConfig const & config &41;", "variables": []}
{"className": "FVideoEncoder::FLayer::FLayer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "FLayer &40; FLayerConfig const & layerConfig &41;", "variables": []}
{"className": "FLayer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "class FLayer", "variables": [{"type": "FCriticalSectio...", "name": "ConfigMutex", "description": ""}, {"type": "FLayerConfig", "name": "CurrentConfig", "description": ""}, {"type": "bool", "name": "NeedsReconfigure", "description": ""}]}
{"className": "FVideoEncoder::FLayer::~FLayer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual &126;FLayer&40;&41;", "variables": []}
{"className": "FVideoEncoder::FLayerConfig::operator==", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "bool operator&61;&61; &40; FLayerConfig const & other &41; const", "variables": []}
{"className": "FVideoEncoder::FLayerConfig::operator!=", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "bool operator&33;&61; &40; FLayerConfig const & other &41; const", "variables": []}
{"className": "FLayerConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "struct FLayerConfig", "variables": [{"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": ""}]}
{"className": "FVideoEncoder::GetLayerConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "[FLayerConfig](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayerConfig) GetLayerConfig ( uint32 layerIdx ) const", "variables": []}
{"className": "FVideoEncoder::GetNumLayers", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "uint32 GetNumLayers() const", "variables": []}
{"className": "FVideoEncoder::GetMaxLayers", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual uint32 GetMaxLayers() const", "variables": []}
{"className": "MultipassMode", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "enum MultipassMode { UNKNOWN, DISABLED, QUARTER, FULL, }", "variables": []}
{"className": "H264Profile", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "enum H264Profile { AUTO, CONSTRAINED_BASELINE, BASELINE, MAIN, CONSTRAINED_HIGH, HIGH, HIGH444, STEREO, SVC_TEMPORAL_SCALABILITY, PROGRESSIVE_HIGH, }", "variables": []}
{"className": "OnEncodedPacketCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "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", "variables": []}
{"className": "OnFrameEncodedCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(const [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) >)> OnFrameEncodedCallback", "variables": []}
{"className": "RateControlMode", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "enum RateControlMode { UNKNOWN, CONSTQP, VBR, CBR, }", "variables": []}
{"className": "FVideoEncoder::SetOnEncodedPacket", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "void SetOnEncodedPacket ( [OnEncodedPacketCallback](API\\Runtime\\AVEncoder\\FVideoEncoder\\OnEncodedPacketCallback) callback )", "variables": []}
{"className": "FVideoEncoder::Setup", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual bool Setup ( [TSharedRef](API\\Runtime\\Core\\Templates\\TSharedRef)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > input, [FLayerConfig](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayerConfig) const & config )", "variables": []}
{"className": "FVideoEncoder::Shutdown", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual void Shutdown()", "variables": []}
{"className": "FVideoEncoder::UpdateLayerConfig", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "void UpdateLayerConfig ( uint32 layerIdx, [FLayerConfig](API\\Runtime\\AVEncoder\\FVideoEncoder\\FLayerConfig) const & config )", "variables": []}
{"className": "FVideoEncoder::FVideoEncoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "FVideoEncoder()", "variables": []}
{"className": "FVideoEncoder::~FVideoEncoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "virtual ~FVideoEncoder()", "variables": []}
{"className": "FVideoEncoderFactory::Create", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "[TUniquePtr](API\\Runtime\\Core\\Templates\\TUniquePtr)< [FVideoEncoder](API\\Runtime\\AVEncoder\\FVideoEncoder) > Create ( uint32 InID, const FVideoEncoder::FLayerConfig & config )", "variables": []}
{"className": "FVideoEncoder", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoder.h", "description": "", "module": "AVEncoder", "code": "class FVideoEncoder", "variables": [{"type": "TArray<FLayer...", "name": "Layers", "description": ""}, {"type": "OnEncodedPacket...", "name": "OnEncodedPacket", "description": ""}]}
{"className": "FVideoEncoderFactory::Create", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "[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 )", "variables": []}
{"className": "CreateEncoderCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "The callback type used to create a registered encoder", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< [TUniquePtr](API\\Runtime\\Core\\Templates\\TUniquePtr)< [FVideoEncoder](API\\Runtime\\AVEncoder\\FVideoEncoder) >()> CreateEncoderCallback", "variables": []}
{"className": "FVideoEncoderFactory::Debug_SetDontRegisterDefaultCodecs", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static void Debug_SetDontRegisterDefaultCodecs()", "variables": []}
{"className": "FVideoEncoderFactory::Get", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [FVideoEncoderFactory](API\\Runtime\\AVEncoder\\FVideoEncoderFactory) & Get()", "variables": []}
{"className": "FVideoEncoderFactory::HasEncoderForCodec", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "bool HasEncoderForCodec ( [ECodecType](API\\Runtime\\AVEncoder\\AVEncoder__ECodecType) CodecType ) const", "variables": []}
{"className": "FVideoEncoderFactory::GetInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "bool GetInfo ( uint32 InID, [FVideoEncoderInfo](API\\Runtime\\AVEncoder\\FVideoEncoderInfo) & OutInfo ) const", "variables": []}
{"className": "FVideoEncoderFactory::IsSetup", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "bool IsSetup() const", "variables": []}
{"className": "NextID", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [FThreadSafeCounter](API\\Runtime\\Core\\HAL\\FThreadSafeCounter) NextID = 4711;", "variables": []}
{"className": "FVideoEncoderFactory::Register", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "Register an encoder so that it can be iterated and created", "module": "AVEncoder", "code": "void Register ( const [FVideoEncoderInfo](API\\Runtime\\AVEncoder\\FVideoEncoderInfo) & InInfo, const [CreateEncoderCallback](API\\Runtime\\AVEncoder\\FVideoEncoderFactory\\CreateEncoderCallback) & InCreateEncoder )", "variables": []}
{"className": "FVideoEncoderFactory::Shutdown", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static void Shutdown()", "variables": []}
{"className": "FVideoEncoderFactory::GetAvailable", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "Get a list of registered encoders", "module": "AVEncoder", "code": "const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FVideoEncoderInfo](API\\Runtime\\AVEncoder\\FVideoEncoderInfo) > & GetAvailable() const", "variables": []}
{"className": "ProtectSingleton", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static FCriticalSection ProtectSingleton;", "variables": []}
{"className": "FVideoEncoderFactory", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "No destructors are accessible with public or protected access.", "module": "AVEncoder", "code": "class FVideoEncoderFactory", "variables": []}
{"className": "Singleton", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderFactory.h", "description": "", "module": "AVEncoder", "code": "static [FVideoEncoderFactory](API\\Runtime\\AVEncoder\\FVideoEncoderFactory) Singleton;", "variables": []}
{"className": "FVideoEncoderInfo", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoCommon.h", "description": "", "module": "AVEncoder", "code": "struct FVideoEncoderInfo", "variables": [{"type": "ECodecType", "name": "CodecType", "description": ""}, {"type": "AVEncoder::FVid...", "name": "H264", "description": ""}, {"type": "uint32", "name": "ID", "description": ""}, {"type": "uint32", "name": "MaxHeight", "description": ""}, {"type": "uint32", "name": "MaxLevel", "description": ""}, {"type": "uint32", "name": "MaxWidth", "description": ""}, {"type": "uint32", "name": "MinLevel", "description": ""}, {"type": "TArray<EVideoF...", "name": "SupportedInputFormats", "description": ""}, {"type": "uint32", "name": "SupportedProfiles", "description": ""}]}
{"className": "FVideoEncoderInput::CreateBuffer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Create a user managed buffer", "module": "AVEncoder", "code": "[FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) * CreateBuffer ( [OnFrameReleasedCallback](API\\Runtime\\AVEncoder\\FVideoEncoderInput\\OnFrameReleasedCallback) InOnFrameReleased )", "variables": []}
{"className": "FVideoEncoderInput::CreateForCUDA", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Create input for an encoder that encodes a CUarray", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > CreateForCUDA ( void * InApplicationCudaContext, bool IsResizable )", "variables": []}
{"className": "FVideoEncoderInput::CreateDummy", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Construct video encoder input based on expected input frame format", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > CreateDummy ( bool isResizable )", "variables": []}
{"className": "FVideoEncoderInput::CreateForD3D11", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Create input for an encoder that encodes a D3D11 texture", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > CreateForD3D11 ( void * InApplicationD3D11Device, bool IsResizable, bool IsShared )", "variables": []}
{"className": "FVideoEncoderInput::CreateForD3D12", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Create input for an encoder that encodes a D3D12 texture", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > CreateForD3D12 ( void * InApplicationD3D12Device, bool IsResizable, bool IsShared )", "variables": []}
{"className": "FVideoEncoderInput::CreateForVulkan", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Create input for an encoder that encodes a VkImage", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > CreateForVulkan ( void * InApplicationVulkanData, bool IsResizable )", "variables": []}
{"className": "FVideoEncoderInput::CreateForYUV420P", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "static [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) > CreateForYUV420P ( uint32 InWidth, uint32 InHeight, bool isResizable )", "variables": []}
{"className": "FVideoEncoderInput::DestroyBuffer", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Destroy user managed buffer", "module": "AVEncoder", "code": "void DestroyBuffer ( [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) * Buffer )", "variables": []}
{"className": "FVideoEncoderInput::Flush", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Destroy/release any frames that are not currently in use", "module": "AVEncoder", "code": "void Flush()", "variables": []}
{"className": "FVideoEncoderInput::GetAvailableEncoders", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Get a list of supported video encoders", "module": "AVEncoder", "code": "const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FVideoEncoderInfo](API\\Runtime\\AVEncoder\\FVideoEncoderInfo) > & GetAvailableEncoders()", "variables": []}
{"className": "FVideoEncoderInput::GetCUDAEncoderContext", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "CUcontext GetCUDAEncoderContext() const", "variables": []}
{"className": "FVideoEncoderInput::GetFrameFormat", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "[EVideoFrameFormat](API\\Runtime\\AVEncoder\\AVEncoder__EVideoFrameFormat) GetFrameFormat() const", "variables": []}
{"className": "FVideoEncoderInput::ObtainInputFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Obtain a video frame that can be used as a buffer for input to a video encoder", "module": "AVEncoder", "code": "[TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) > ObtainInputFrame()", "variables": []}
{"className": "OnFrameReleasedCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "New packet callback prototype void(uint32 LayerIndex, const FCodecPacket& Packet)", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(const [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) *)> OnFrameReleasedCallback", "variables": []}
{"className": "FVideoEncoderInput::operator=", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "[FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) & operator= ( const [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) & )", "variables": []}
{"className": "FVideoEncoderInput::ReleaseInputFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Release (free) an input frame and make it available for future use", "module": "AVEncoder", "code": "void ReleaseInputFrame ( [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) * InFrame )", "variables": []}
{"className": "FVideoEncoderInput::SetMaxNumBuffers", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Properties", "module": "AVEncoder", "code": "virtual void SetMaxNumBuffers ( uint32 InMaxNumBuffers )", "variables": []}
{"className": "FVideoEncoderInput::FVideoEncoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoEncoderInput ( const [FVideoEncoderInput](API\\Runtime\\AVEncoder\\FVideoEncoderInput) & )", "variables": []}
{"className": "FVideoEncoderInput::FVideoEncoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoEncoderInput()", "variables": []}
{"className": "FVideoEncoderInput::~FVideoEncoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "virtual ~FVideoEncoderInput()", "variables": []}
{"className": "FVideoEncoderInput", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "class FVideoEncoderInput", "variables": [{"type": "bool", "name": "bIsResizable", "description": ""}, {"type": "EVideoFrameForm...", "name": "FrameFormat", "description": ""}, {"type": "uint32", "name": "MaxNumBuffers", "description": ""}, {"type": "uint32", "name": "NextFrameID", "description": ""}, {"type": "uint32", "name": "NumBuffers", "description": ""}]}
{"className": "FVideoEncoderInputFrame::AllocateYUV420P", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "void AllocateYUV420P()", "variables": []}
{"className": "FVideoEncoderInputFrame::Clone", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Clone frame - this will create a copy that references the original until destroyed.", "module": "AVEncoder", "code": "const [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) * Clone ( [FCloneDestroyedCallback](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\FCloneDestroyedCallback) InCloneDestroyedCallback ) const", "variables": []}
{"className": "EUnderlyingRHI", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "enum EUnderlyingRHI { Undefined, D3D11, D3D12, Vulkan, }", "variables": []}
{"className": "FCloneDestroyedCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "The callback type used to create a registered encoder", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(const [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) *)> FCloneDestroyedCallback", "variables": []}
{"className": "FCUDA", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "CUDA", "module": "AVEncoder", "code": "struct FCUDA", "variables": [{"type": "CUcontext", "name": "EncoderDevice", "description": ""}, {"type": "CUarray", "name": "EncoderTexture", "description": ""}, {"type": "void *", "name": "SharedHandle", "description": ""}, {"type": "EUnderlyingRHI", "name": "UnderlyingRHI", "description": ""}]}
{"className": "FReleaseCUDATextureCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "The callback type used to create a registered encoder", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(CUarray)> FReleaseCUDATextureCallback", "variables": []}
{"className": "FYUV420P", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "struct FYUV420P", "variables": [{"type": "const uint8 \u0004...", "name": "Data", "description": ""}, {"type": "uint32", "name": "StrideU", "description": ""}, {"type": "uint32", "name": "StrideV", "description": ""}, {"type": "uint32", "name": "StrideY", "description": ""}]}
{"className": "FVideoEncoderInputFrame::GetCUDA", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "const [FCUDA](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\FCUDA) & GetCUDA() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetCUDA", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "[FCUDA](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\FCUDA) & GetCUDA()", "variables": []}
{"className": "FVideoEncoderInputFrame::GetFormat", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Current format of frame", "module": "AVEncoder", "code": "[EVideoFrameFormat](API\\Runtime\\AVEncoder\\AVEncoder__EVideoFrameFormat) GetFormat() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetHeight", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "uint32 GetHeight() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetFrameID", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "uint32 GetFrameID() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetTimestampRTP", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "int64 GetTimestampRTP() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetTimestampUs", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "int64 GetTimestampUs() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetYUV420P", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "const [FYUV420P](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\FYUV420P) & GetYUV420P() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetWidth", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "uint32 GetWidth() const", "variables": []}
{"className": "FVideoEncoderInputFrame::GetYUV420P", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "[FYUV420P](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\FYUV420P) & GetYUV420P()", "variables": []}
{"className": "FVideoEncoderInputFrame::Obtain", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Obtain (increase reference count) of this input frame.", "module": "AVEncoder", "code": "const [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) * Obtain() const", "variables": []}
{"className": "FVideoEncoderInputFrame::Release", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Release (decrease reference count) of this input frame.", "module": "AVEncoder", "code": "void Release() const", "variables": []}
{"className": "FVideoEncoderInputFrame::SetFrameID", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "void SetFrameID ( uint32 id )", "variables": []}
{"className": "FVideoEncoderInputFrame::SetHeight", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Height of frame buffer", "module": "AVEncoder", "code": "void SetHeight ( uint32 InHeight )", "variables": []}
{"className": "FVideoEncoderInputFrame::SetTexture", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "void SetTexture ( CUarray InTexture, [EUnderlyingRHI](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\EUnderlyingRHI) UnderlyingRHI, void * SharedHandle, [FReleaseCUDATextureCallback](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame\\FReleaseCUDATextureCallback) InOnReleaseTexture )", "variables": []}
{"className": "FVideoEncoderInputFrame::SetTimestampRTP", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "void SetTimestampRTP ( int64 timestampRTP )", "variables": []}
{"className": "FVideoEncoderInputFrame::SetTimestampUs", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "void SetTimestampUs ( int64 timestampUs )", "variables": []}
{"className": "FVideoEncoderInputFrame::SetWidth", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "Width of frame buffer", "module": "AVEncoder", "code": "void SetWidth ( uint32 InWidth )", "variables": []}
{"className": "FVideoEncoderInputFrame::SetYUV420P", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "void SetYUV420P ( const uint8 * InDataY, const uint8 * InDataU, const uint8 * InDataV, uint32 InStrideY, uint32 InStrideU, uint32 InStrideV )", "variables": []}
{"className": "FVideoEncoderInputFrame::FVideoEncoderInputFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoEncoderInputFrame()", "variables": []}
{"className": "FVideoEncoderInputFrame::FVideoEncoderInputFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "FVideoEncoderInputFrame ( const [FVideoEncoderInputFrame](API\\Runtime\\AVEncoder\\FVideoEncoderInputFrame) & CloneFrom )", "variables": []}
{"className": "FVideoEncoderInputFrame::~FVideoEncoderInputFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "", "module": "AVEncoder", "code": "virtual ~FVideoEncoderInputFrame()", "variables": []}
{"className": "IAudioEncoderListener::OnEncodedAudioFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "void OnEncodedAudioFrame ( const [FMediaPacket](API\\Runtime\\AVEncoder\\FMediaPacket) & Packet )", "variables": []}
{"className": "FVideoEncoderInputFrame", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/VideoEncoderInput.h", "description": "TODO this should go elsewhere and be made cross platform.", "module": "AVEncoder", "code": "class FVideoEncoderInputFrame", "variables": [{"type": "bool", "name": "bFreeYUV420PData", "description": ""}, {"type": "FCUDA", "name": "CUDA", "description": ""}, {"type": "EVideoFrameForm...", "name": "Format", "description": ""}, {"type": "uint32", "name": "FrameID", "description": ""}, {"type": "uint32", "name": "Height", "description": ""}, {"type": "FThreadSafeCoun...", "name": "NumReferences", "description": ""}, {"type": "FReleaseCUDATex...", "name": "OnReleaseCUDATexture", "description": ""}, {"type": "TFunction< void...", "name": "OnTextureEncode", "description": ""}, {"type": "int64", "name": "TimestampRTP", "description": ""}, {"type": "int64", "name": "TimestampUs", "description": ""}, {"type": "uint32", "name": "Width", "description": ""}, {"type": "FYUV420P", "name": "YUV420P", "description": ""}]}
{"className": "IAudioEncoderListener", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioEncoder.h", "description": "", "module": "AVEncoder", "code": "class IAudioEncoderListener", "variables": []}
{"className": "LibRtc::EAudioMuteReason", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "librtc", "module": "AVEncoder", "code": "namespace LibRtc { enum EAudioMuteReason { Unsupported, Manual, NotListening, AdminDisabled, } }", "variables": []}
{"className": "OnAudioDecodeCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "The undecoded audio byte buffer is not guaranteed to be available after callback finishes. The pointer of the decoded audio sample buffer should be valid until the next decode call will happen.", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(const [FAudioByteBuffer](API\\Runtime\\AVEncoder\\FAudioByteBuffer) &AudioBytes, const [FAudioSampleBuffer](API\\Runtime\\AVEncoder\\FAudioSampleBuffer) &)> OnAudioDecodeCallback", "variables": []}
{"className": "OnAudioEncodeCallback", "headerPath": "/Engine/Source/Runtime/AVEncoder/Public/AudioTypes.h", "description": "The unencoded audio sample buffer is not guaranteed to be available after callback finishes. The pointer of the encoded audio byte buffer should be valid until the next encode call will happen.", "module": "AVEncoder", "code": "typedef [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void(const [FAudioSampleBuffer](API\\Runtime\\AVEncoder\\FAudioSampleBuffer) &, const [FAudioByteBuffer](API\\Runtime\\AVEncoder\\FAudioByteBuffer) &AudioBytes)> OnAudioEncodeCallback", "variables": []}