I have created a Codec Engine DSP server in Linux that contains several algorithms that need to be called from an application that never ends. I have a couple of questions.
1. Should I open and close the handle to the engine for each Algorithm or should I open the Codec Engine and never close it?
Currently my application is built in Linux with no DSP algorithms.
1. Should I add the algorithm create, process, and control functions to my existing Linux application and then build it with the necessary DSP tools?
2. Or should each algorithm be a separate application that my current application calls?
Thanks.