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
very interesting. I think I did test this with race and I don't remember this, but googling for the issue and the offending line suggests it might be related to: etcd-io/bbolt#187 . in the line the race detector balks at here, I cast a regular int to a pointer (because of cgo limitations and the opus api), but according to that ticket you're not allowed to have pointers unaligned at word boundaries. the good news is, from my recollection without delving in further, that value iirc is opaque to libopus and only dereferenced by the callback, which doesn't actually dereference it but cast it back to a regular int. the bad news is I don't know if that's true so I'll have to check on this when I have a moment :)
Looks like some issue with uintptr when creating an Opus stream. Code does:
The text was updated successfully, but these errors were encountered: