UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
VideoDecoderH264_Windows.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
7
8namespace AVEncoder
9{
10
12{
13public:
14 // register decoder with video decoder factory
17 virtual bool Setup(const FInit& InInit) = 0;
18 virtual EDecodeResult Decode(const FVideoDecoderInput* InInput) = 0;
20
21 virtual void Shutdown() = 0;
22
23protected:
24 virtual ~FVideoDecoderH264_Windows() = default;
25};
26
27} // namespace AVEncoder
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define PRAGMA_ENABLE_DEPRECATION_WARNINGS
Definition GenericPlatformCompilerPreSetup.h:12
#define PRAGMA_DISABLE_DEPRECATION_WARNINGS
Definition GenericPlatformCompilerPreSetup.h:8
Definition VideoDecoderH264_Impl.h:14
Definition VideoDecoderH264_Windows.h:12
virtual ~FVideoDecoderH264_Windows()=default
virtual EDecodeResult Decode(const FVideoDecoderInput *InInput)=0
virtual PRAGMA_ENABLE_DEPRECATION_WARNINGS void Shutdown()=0
virtual bool Setup(const FInit &InInit)=0
Definition AudioEncoder.cpp:7