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
# _/home/nanu/go/src/github.com/xlab/vorbis-go/cmd/vorbis-player
../../../main.go:154:14: constant 4294967296 overflows int
../../../main.go:154:14: array bound is too large
this line out := (*(*[1 << 32]float32)(unsafe.Pointer(output)))[:int(sampleCount)*channels]
could be changed to out := (*(*[1 << 20]float32)(unsafe.Pointer(output)))[:int(sampleCount)*channels]
The text was updated successfully, but these errors were encountered:
this line
out := (*(*[1 << 32]float32)(unsafe.Pointer(output)))[:int(sampleCount)*channels]
could be changed to
out := (*(*[1 << 20]float32)(unsafe.Pointer(output)))[:int(sampleCount)*channels]
The text was updated successfully, but these errors were encountered: