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
chromaprint_get_raw_fingerprint appears to return a pointer to uint32 , but in chromaprint.go GetRawFingerprint() this is converted to a []int32 with goInt32s
I would imagine for this to be safe you would want to use []int64 to avoid overflows OR we might need to be using uint32[]
Am I missing something here?
The text was updated successfully, but these errors were encountered:
chromaprint_get_raw_fingerprint appears to return a pointer to uint32 , but in chromaprint.go GetRawFingerprint() this is converted to a []int32 with goInt32s
I would imagine for this to be safe you would want to use []int64 to avoid overflows OR we might need to be using uint32[]
Am I missing something here?
The text was updated successfully, but these errors were encountered: