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]
21 lines
416 B
C++
21 lines
416 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "VideoEncoderCommon.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
#include "VideoEncoderFactory.h"
|
|
|
|
class FAVEncoderModule : public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
void ShutdownModule()
|
|
{
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
AVEncoder::FVideoEncoderFactory::Shutdown();
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FAVEncoderModule, AVEncoder);
|