Files
UnrealEngine/Engine/Source/ThirdParty/libav/Public/libav_Decoder_VP8.h
2025-05-18 13:04:45 +08:00

18 lines
518 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "libav_Decoder_Common_Video.h"
class ILibavDecoderVP8
{
public:
// Checks if the VP8 decoder is available.
static LIBAV_API bool IsAvailable();
// Create an instance of the decoder. If not available nullptr is returned.
static LIBAV_API TSharedPtr<ILibavDecoderVideoCommon, ESPMode::ThreadSafe> Create(ILibavDecoderVideoResourceAllocator* InVideoResourceAllocator, const TMap<FString, FVariant>& InOptions);
};