Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qm210 committed Nov 22, 2024
1 parent 4eebfd9 commit 0534ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sointu-vsti/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func init() {
buf = append(buf, make(sointu.AudioBuffer, out.Frames-len(buf))...)
}
buf = buf[:out.Frames]
player.Process(buf, &context, nil)
player.Process(buf, &context)

Check failure on line 112 in cmd/sointu-vsti/main.go

View workflow job for this annotation

GitHub Actions / binaries (ubuntu-latest, /home/runner/nasm/nasm, sointu-vsti.so, -buildmode=c-shared -tags=plugin...

cannot use &context (value of type *VSTIProcessContext) as tracker.PlayerProcessContext value in argument to player.Process: *VSTIProcessContext does not implement tracker.PlayerProcessContext (missing method Constraints)

Check failure on line 112 in cmd/sointu-vsti/main.go

View workflow job for this annotation

GitHub Actions / binaries (ubuntu-latest, /home/runner/nasm/nasm, sointu-vsti-native.so, -buildmode=c-shared -tags...

cannot use &context (value of type *VSTIProcessContext) as tracker.PlayerProcessContext value in argument to player.Process: *VSTIProcessContext does not implement tracker.PlayerProcessContext (missing method Constraints)

Check failure on line 112 in cmd/sointu-vsti/main.go

View workflow job for this annotation

GitHub Actions / binaries (ubuntu-latest, /home/runner/nasm/nasm, sointu-vsti.so, -buildmode=c-shared -tags=plugin...

cannot use &context (value of type *VSTIProcessContext) as tracker.PlayerProcessContext value in argument to player.Process: *VSTIProcessContext does not implement tracker.PlayerProcessContext (missing method Constraints)

Check failure on line 112 in cmd/sointu-vsti/main.go

View workflow job for this annotation

GitHub Actions / binaries (ubuntu-latest, /home/runner/nasm/nasm, sointu-vsti-native.so, -buildmode=c-shared -tags...

cannot use &context (value of type *VSTIProcessContext) as tracker.PlayerProcessContext value in argument to player.Process: *VSTIProcessContext does not implement tracker.PlayerProcessContext (missing method Constraints)
for i := 0; i < out.Frames; i++ {
left[i], right[i] = buf[i][0], buf[i][1]
}
Expand Down

0 comments on commit 0534ec4

Please sign in to comment.