[Csnd] signalflowgraph: csoundModuleDestroy(0x55b395c5ae70) : csoundSetParams(csound,&csparams)
Date | 2019-09-09 10:22 |
From | Marco Ippolito |
Subject | [Csnd] signalflowgraph: csoundModuleDestroy(0x55b395c5ae70) : csoundSetParams(csound,&csparams) |
Hi, this is my very first attemp to use C++API: #include |
Date | 2019-09-09 10:32 |
From | Steven Yi |
Subject | Re: [Csnd] signalflowgraph: csoundModuleDestroy(0x55b395c5ae70) : csoundSetParams(csound,&csparams) |
I think the problem is that there is no Csound code being executed. Usually there's calls to csoundCompile (or variant) and either calls csoundPerformKsmps or csoundPerform or starting of a thread. You might also check out these examples for some ideas: https://github.com/csound/csoundAPI_examples On Mon, Sep 9, 2019 at 5:22 AM Marco Ippolito |
Date | 2019-09-09 10:32 |
From | Francois PINOT |
Subject | Re: [Csnd] signalflowgraph: csoundModuleDestroy(0x55b395c5ae70) : csoundSetParams(csound,&csparams) |
You're saying that you're using the Csound C++ API, but in fact I see that you are using functions of the Csound C API. The C API has been wrapped in a C++ class for convenience. This gives the Csound basic C++ API. You can find useful references here: and examples her: François Le lun. 9 sept. 2019 à 11:22, Marco Ippolito <ippolito.marco@gmail.com> a écrit : Hi, |