You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Probably) not an issue, but here goes. Loading Kemar_HRTF_sofa.sofa from this Aachen high-resolution Kemar HRTF dataset throws MYSOFA_INVALID_FORMAT at line 550 of data object.h:
if (size > 0x10000000)
return MYSOFA_INVALID_FORMAT; // LCOV_EXCL_LINE
This is clearly due to the size of this particular SOFA file being larger than 0x10000000. Where is the 0x10000000 limit coming from? Increasing the limit to 0x100000000 (i.e. 16 times larger) fixes it. Does that break the library somewhere else? Thanks.
The text was updated successfully, but these errors were encountered:
(Probably) not an issue, but here goes. Loading Kemar_HRTF_sofa.sofa from this Aachen high-resolution Kemar HRTF dataset throws MYSOFA_INVALID_FORMAT at line 550 of data object.h:
This is clearly due to the size of this particular SOFA file being larger than 0x10000000. Where is the 0x10000000 limit coming from? Increasing the limit to 0x100000000 (i.e. 16 times larger) fixes it. Does that break the library somewhere else? Thanks.
The text was updated successfully, but these errors were encountered: