Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VST3 and requestedFlush; wrong but double wrong in reaper #332

Open
baconpaul opened this issue Jan 5, 2025 · 2 comments
Open

VST3 and requestedFlush; wrong but double wrong in reaper #332

baconpaul opened this issue Jan 5, 2025 · 2 comments

Comments

@baconpaul
Copy link
Collaborator

params::requestFlush basically sets _requestFlush

if (_requestedFlush)

that then calls flush here

So there's two problems

  1. I think that should being if _processing and not if _active inside the condition
  2. but even with that change Reaper wont work because Reaper has a weird thing when you toggle a vst3 off that it calls setProcessing(false) then immediately setprocessing(true).

This is the cause of baconpaul/six-sines#54

@baconpaul
Copy link
Collaborator Author

https://forum.cockos.com/showthread.php?p=2835482#post2835482 asked the reaper devs there

@baconpaul
Copy link
Collaborator Author

Schwa and I bang it out on that thread. Basically we need to deal with setProcessing always being true in vst3s while still doing flush. I have a plan.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant