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

Live never stops showing that it's scanning Surge VST3 #6858

Closed
mkruselj opened this issue Feb 25, 2023 · 4 comments
Closed

Live never stops showing that it's scanning Surge VST3 #6858

mkruselj opened this issue Feb 25, 2023 · 4 comments
Labels
Bug Report Item submitted using the Bug Report template Host Specific Issues related to specific host(s) or host features VST3 VST3 plugin related issues Windows Windows related issues
Milestone

Comments

@mkruselj
Copy link
Collaborator

image

Pretty weird one. No matter how long you wait this message never disappears. Not sure if it prevents scanning other plugins that come alphabetically after Surge, it might.

@mkruselj mkruselj added Host Specific Issues related to specific host(s) or host features VST3 VST3 plugin related issues Bug Report Item submitted using the Bug Report template labels Feb 25, 2023
@mkruselj mkruselj added this to the Surge XT 1.2 milestone Feb 25, 2023
@baconpaul
Copy link
Collaborator

OK so this doesn't happen for me on macOS with live 11.2
which means it will be painful to debug and won't get fixed this morning

@mkruselj
Copy link
Collaborator Author

mkruselj commented Mar 3, 2023

Is there anything I can printf() somewhere to debug this, or a line to put a breakpoint to?

@baconpaul
Copy link
Collaborator

yes
but i don't know what :)

My guess is: Is it getting to the end of the SurgeSynthesizer constructor or not?

If I was debugging it I would also do the following

in src/surge-xt/SurgeSynthProcessor.cpp add a little thing like this

struct DebugPrints
{
   std::string f;
    DebugPrint(const std::string &s) : f(s) { std::cout << "Entered " << f << std::endl; }
    ~DebugPrint() { std::cout << "Exited " << f << std::endl; }
};

then for each of the juce functions (like isBusSupported and process getParamCount and things) add at the top of the function

DebugPrints dpXXX(__func__);

and it will print when it enters and exits every function. That's where I would start.

@baconpaul baconpaul added the Windows Windows related issues label Mar 3, 2023
@mkruselj
Copy link
Collaborator Author

mkruselj commented Mar 9, 2023

OK it seems this is not our issue. I removed Surge VST3 from the folder and it got stuck on another plugin. This is with Live 11.2.6 here. I guess it's something to report to them. Closing this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Report Item submitted using the Bug Report template Host Specific Issues related to specific host(s) or host features VST3 VST3 plugin related issues Windows Windows related issues
Projects
None yet
Development

No branches or pull requests

2 participants