menu
 

Audiokinetic의 커뮤니티 Q&A는 사용자가 Wwise와 Strata 커뮤니티 내에서 서로 질문과 답변을 하는 포럼입니다. Audiokinetic의 기술 지원팀에게 문의하고 싶으신 경우 지원 티켓 페이지를 사용해주세요.

0 투표

Every now and again a certain UAkAudioEvent for pausing and unpausing music won't garbage collect when closing a game made on UE4 version 4.26.2 using Wwise 2021.1.1.7601.1995.  First the garbage collector tries to destroy the audio event via UAkAudioEvent::BeginDestroy() which always fires the following warning (other events also fire it sometimes):

UE_LOG(LogAkAudio, Warning, TEXT("Stopping all instances of the \"%s\" event because it is being unloaded."), *GetName());

Then the garbage collector tries to call UAkAudioEvent::IsReadyForFinishDestroy() over and over again which in turn tries to call AK::SoundEngine::RenderAudio() which doesn't deactivate the event.  The event that is being deleted is the only active event in the audio device and there are no async tasks.  The log file keeps growing filling up the log file with this message:

[2022.04.12-03.38.48:818][394]LogGarbage: Warning: [0]: AkAudioEvent None.None, IsReadyForFinishDestroy: false

[2022.04.12-03.38.48:818][394]LogGarbage: Warning: Spent more than 10.00s on routing FinishDestroy to objects (objects in queue: 1)

The UAkAudioEvent pauses the game's music, starts the menu music, and also pauses all sounds.  There is a resume UAkAudioEvent that does the opposite which always gets called when exiting the game menu.  I only found this forum which had the same problem with no solution.  What is the garbage collector trying to accomplish by calling AK::SoundEngine::RenderAudio() over and over to deactivate the event?   Also why would an event that only contains pauses and a start not deactivate or stay active for a very long time?

General Discussion Elroy (100 포인트) 로 부터
수정 Elroy 로 부터

Please sign-in or register to answer this question.

...