You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb ethan.geller, aaron.mcleran,phill.Popp #jira UEAU-503 #jira UEAU-504 #jira UEAU-505 [CL 13926440 by jimmy smith in ue5-main branch]
22 lines
540 B
C++
22 lines
540 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
#include "IAudioCodecRegistry.h"
|
|
#include "PcmCodec.h"
|
|
|
|
class FAudioExtensionsModule : public IModuleInterface
|
|
{
|
|
public:
|
|
void StartupModule() override
|
|
{
|
|
FModuleManager::Get().LoadModuleChecked(TEXT("SignalProcessing"));
|
|
FModuleManager::Get().LoadModuleChecked(TEXT("AudioMixerCore"));
|
|
|
|
// Built in Codecs.
|
|
Audio::ICodecRegistry::Get().RegisterCodec(Audio::Create_PcmCodec());
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FAudioExtensionsModule, AudioExtensions);
|