You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb luke.bermingham #jira UE-174651 [FYI] [CL 32265425 by william belcher in ue5-main branch]
31 lines
674 B
C++
31 lines
674 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "HAL/Platform.h"
|
|
|
|
#if PLATFORM_WINDOWS
|
|
|
|
#include "AudioEncoderFactory.h"
|
|
|
|
namespace AVEncoder
|
|
{
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
class FWmfAudioEncoderFactory : public FAudioEncoderFactory
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
|
{
|
|
public:
|
|
FWmfAudioEncoderFactory();
|
|
~FWmfAudioEncoderFactory() override;
|
|
const TCHAR* GetName() const override;
|
|
TArray<FString> GetSupportedCodecs() const override;
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
TUniquePtr<FAudioEncoder> CreateEncoder(const FString& Codec) override;
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif //PLATFORM_WINDOWS
|
|
|