I am using the opus
library in an Android project. I have successfully linked to the library and can use the opus_decode
function. But even though Android Studio does not throw any errors, the opus_decode_float
throws an undefined reference error when I try to make the project with a linker command failed messages.
I have refreshed the linked c/c++
files and restarted Android studio. Error still persists. Similar cases I have come across all mention linking/importing the header file where the opus_decode_float
is defined but this is already imported as opus_decode
which is defined in the same header file does not throw any linker errors.