2019-12-26 14:45:42 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-11-26 17:28:51 -05:00
|
|
|
|
2021-04-29 19:32:06 -04:00
|
|
|
#include "VideoEncoderCommon.h"
|
2019-11-26 17:28:51 -05:00
|
|
|
#include "Modules/ModuleManager.h"
|
2021-04-29 19:32:06 -04:00
|
|
|
|
|
|
|
|
#include "VideoEncoderFactory.h"
|
|
|
|
|
|
2019-11-26 17:28:51 -05:00
|
|
|
class FAVEncoderModule : public IModuleInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
2021-04-29 19:32:06 -04:00
|
|
|
|
|
|
|
|
void ShutdownModule()
|
|
|
|
|
{
|
2024-03-14 20:30:26 -04:00
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
2021-04-29 19:32:06 -04:00
|
|
|
AVEncoder::FVideoEncoderFactory::Shutdown();
|
2024-03-14 20:30:26 -04:00
|
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
2021-04-29 19:32:06 -04:00
|
|
|
}
|
2019-11-26 17:28:51 -05:00
|
|
|
};
|
|
|
|
|
|
2021-04-29 19:32:06 -04:00
|
|
|
IMPLEMENT_MODULE(FAVEncoderModule, AVEncoder);
|