Is there some supposed way to easily extract (decouple) the internal C++ worker code to a standalone C++ library so that it can be used with some other C++ code by simply (e.g. statically) linking to it for not going an external worker process integration route.
Are there some specific meson target (sorry, not familiar with meson) which do what I’ve described to pull by external project as library ?
BTW, thanks a lot for all the hard work on this project.
what i would do if i was you is looking in the lib how the code was made.
Or build myself from the start the same lib.
Or making a micro service in rust and use a message broker to send data between both your C++ code and sfu server.
But if the objective is to build the same library in C++, i would start to use the same input and output data and parameter based on type object.
I don’t know if i am explicit for you