menu
 

Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes
Howdy!

Recently my team has upgraded to the latest ( at the time ) release of the UE4 engine plugin integration for Wwise, with UE4 v 4.21.

After the integration, I've noticed some warnings that appear all the time.  These warnings happen with a brand new project as well, so it's not just the upgrade:

LogClass: Warning: FAkMidiEventBase::Type is not initialized properly
LogClass: Warning: FAkMidiEventBase::Chan is not initialized properly
LogClass: Warning: FAkMidiProgramChange::ProgramNum is not initialized properly
LogClass: Warning: FAkMidiChannelAftertouch::Value is not initialized properly
LogClass: Warning: FAkMidiNoteAftertouch::Note is not initialized properly
LogClass: Warning: FAkMidiNoteAftertouch::Value is not initialized properly
LogClass: Warning: FAkMidiPitchBend::ValueLsb is not initialized properly
LogClass: Warning: FAkMidiPitchBend::ValueMsb is not initialized properly
LogClass: Warning: FAkMidiPitchBend::FullValue is not initialized properly
....

And so on.  About 36 warnings in total.  I took a look at the classes in question, and UE is right, these have default constructors written with no initializer list or default values assigned.  Is this intentional?  If so, when can I expect these warnings to be fixed in a future update?   I'm currently going through and rewriting the default constructors to have initializer lists, since our cook process treats all warnings as errors for this particular project.  

Example:

FAkMidiEventBase(){}
changed to

FAkMidiEventBase()

: Type(EAkMidiEventType::AkMidiEventTypeInvalid)

, Chan(0)

{}

Fixes the warnings:
LogClass: Warning: FAkMidiEventBase::Type is not initialized properly
LogClass: Warning: FAkMidiEventBase::Chan is not initialized properly

Thanks,
Branden Turner
WDI
in General Discussion by Branden T. (140 points)
Any info on this?  I downloaded the latest integration past ours and it still has this issue.
Hi Branden, did you find a solution? We are attempting to build our game, and running into similar issues in 4.21/2018.1.1
Hi Jonathan.  Unfortunately the only solution I have is what I suggested above, by going into the source and adding initialization code to each of the default constructors.  The issue there might be that the default values I use aren't the most correct, so if the AK team has anything to say I'm all ears!
Right. This seems to be due to a new UE4 change, a new unit testing suite that checks for uninitialized variables in classes. At least it causes warnings, but won't be the cause of bugs. Still annoying to see hundreds and hundreds of errors when I build.

Please sign-in or register to answer this question.

...