// // Created by Marc Rousavy on 29.09.21. // #include "JFrameProcessorPlugin.h" #include #include namespace vision { using namespace facebook; using namespace jni; using TCallback = jobject(alias_ref, alias_ref> params); local_ref JFrameProcessorPlugin::callback(const alias_ref& frame, const alias_ref>& params) const { auto callbackMethod = getClass()->getMethod("callback"); auto result = callbackMethod(self(), frame, params); return make_local(result); } } // namespace vision