Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

0 votes
AK::StreamMgr::Create failed on PS4 since we upgraded to 2019.2.1.7250 (we were at 2019.1.0.6947)

Here's our code

// Initialize the memory manager.

AkMemSettings MemSettings;

AK::MemoryMgr::GetDefaultSettings(MemSettings);

if (AK::MemoryMgr::Init(&MemSettings) != AK_Success)

{

UE_LOG(LogSounds, Error, TEXT("[Wwise] Could not create the memory manager"));

return false;

}

 

// Initialize the default streaming manager.

// it could be overridden

// Default streaming buffer size: 64KB

AkStreamMgrSettings StreamSettings;

AK::StreamMgr::GetDefaultSettings(StreamSettings);

if (AK::StreamMgr::Create(StreamSettings) == nullptr)

{

UE_LOG(LogSounds, Error, TEXT("[Wwise] Could not create the streaming manager"));

return false;

}

That works perfectly on PC and Xbox but failed on PS4.

Thanks

Fred
in General Discussion by Reflector (110 points)

Please sign-in or register to answer this question.

...