Replies: 1 comment
-
JavaCPP is designed to use C++ from Java, not the other way around, but for a few things about that though, see |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wonder if javacpp would be the right tool in scenario where I have DAW host(Cubase) which has c++ plugin system? Use case is to spawn a java plugin host from such c++ plugin and pass samples to that java plugin host and get result back to c++ plugin. Java gives much simpler environment for manipulating the samples than c++ ever would. And most importantly by using live class loader new version of plugin can be added on the fly without need to restart plugin. I know this works as I have already working system but I would like to accelerate and simplify the process. So what the initial need is to call few java functions from c++ plugin. Also easy access another way around would give way more muscle for contemplating the whole thing. Would I get any signifigant added value over direct use of javap , javah by using javacpp? Right now I'm revamping that interface so it is time to consider to modify the system to work at lower kognitive load level to release brain for actual interesting audio algoritms.
Beta Was this translation helpful? Give feedback.
All reactions