summaryrefslogtreecommitdiff
path: root/FaceDetector_jni.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'FaceDetector_jni.cpp')
-rw-r--r--FaceDetector_jni.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/FaceDetector_jni.cpp b/FaceDetector_jni.cpp
index 650cbf0..1741195 100644
--- a/FaceDetector_jni.cpp
+++ b/FaceDetector_jni.cpp
@@ -15,6 +15,7 @@
*/
#include <assert.h>
+#include <filesystem>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
@@ -119,9 +120,9 @@ initialize(JNIEnv *_env, jobject _this,
{
// load the configuration file
const char* root = getenv("ANDROID_ROOT");
- String8 path(root);
- path.appendPath("usr/share/bmd/RFFstd_501.bmd");
- // path.appendPath("usr/share/bmd/RFFspeed_501.bmd");
+ std::filesystem::path path(root);
+ path /= "usr/share/bmd/RFFstd_501.bmd";
+ // path /= "usr/share/bmd/RFFspeed_501.bmd";
const int MAX_FILE_SIZE = 65536;
void* initData = malloc( MAX_FILE_SIZE ); /* enough to fit entire file */