portaudio-go icon indicating copy to clipboard operation
portaudio-go copied to clipboard

Package portaudio provides Go bindings for PortAudio.

Results 2 portaudio-go issues
Sort by recently updated
recently updated
newest added

trying to a make and then `go build`: ``` ./portaudio.go:148:135: cannot use _cgo0 (type *_Ctype_void) as type *unsafe.Pointer in argument to _Cfunc_Pa_OpenStream ./portaudio.go:163:145: cannot use _cgo0 (type *_Ctype_void) as type...

```go package main import ( "io" "log" "os" "sync" "unsafe" "github.com/xlab/portaudio-go/portaudio" "github.com/youpy/go-wav" ) const ( samplesPerChannel = 2048 ) func main() { if err := portaudio.Initialize(); paError(err) { log.Fatalln("PortAudio init...