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
In snd.js where frames ref-struct is of type long, it works on macOS but in Windows it seems that the size of long changed and cause the struct definition to change. In my case the next field samplerate became 0 and channels became 44100, causing a size calculation errors.
Changing long to int64 fixes the problem but not sure if it will cause any other problems or not.
The text was updated successfully, but these errors were encountered:
In
snd.js
whereframes
ref-struct is of typelong
, it works on macOS but in Windows it seems that the size oflong
changed and cause the struct definition to change. In my case the next fieldsamplerate
became 0 andchannels
became 44100, causing a size calculation errors.Changing
long
toint64
fixes the problem but not sure if it will cause any other problems or not.The text was updated successfully, but these errors were encountered: