menu
 

在 Audiokinetic 社区问答论坛上,用户可对 Wwise 和 Strata 相关问题进行提问和解答。如需从 Audiokinetic 技术支持团队获取答复,请务必使用技术支持申请单页面。

0 投票

Hi everybody,

I'm developping a custom sound engine following the getting started 

I manage to make it works on my laptop

But when I compile (with sdk librairies for ARM) and run I'm facing to that issue when I call the first AK::SoundEngine::LoadBank

...

if (g_lowLevelIO.SetBasePath(AKTEXT("./assets")) != AK_Success) {

     throw "Error SetBasePath";

}

AkBankID bankInitID; // Not used

if (AK::SoundEngine::LoadBank(BANKNAME_INIT, bankInitID) != AK_Success)

{

throw "Error loading init bank";

}

AkBankID bankCarID; // Not used

if (AK::SoundEngine::LoadBank(BANKNAME_CAR, bankCarID) != AK_Success)

{

throw "Error loading car bank";

}

...

../Common/AkStreamMgr.h:340 Assertion Failed! Expression:!"Invalid device ID"
[0] 0x0x55557f6260
../Common/AkStreamMgr.cpp:654 Assertion Failed! Expression:!"File Location Resolver returned an invalid device ID"
[0] 0x0x55557f6260
../Common/AkStreamMgr.h:340 Assertion Failed! Expression:!"Invalid device ID"
[0] 0x0x55557f6260
../Common/AkStreamMgr.cpp:654 Assertion Failed! Expression:!"File Location Resolver returned an invalid device ID"
[0] 0x0x55557f6260
AK Error: Bank Load Failed

 

I'm using the default low level IO provided by AudioKinetic SDK.

While debugging I think the issue targets the audio device opening

Any ideas ?

分类:General Discussion | 用户: Saïd L. (160 分)
修改于 用户:Saïd L.

Please sign-in or register to answer this question.

...