Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew Comminos <andrewcomminos@gmail.com>2014-03-05 03:37:56 +0400
committerAndrew Comminos <andrewcomminos@gmail.com>2014-03-05 03:37:56 +0400
commit577fda492042f060b7f6563b72dbf7e1dc3aaae6 (patch)
tree4e70bfbccde8b2ae33ede847a8f03deb8ec41d30 /tools
parent49563d8c392e62591c1e509b7d40130a97942bbe (diff)
Fixed transmission issue with voice activity. Disabled bitrate scaling
in CELT implementation until robot voice is fixed. Updated JNI build scripts.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/jnigen.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/jnigen.sh b/tools/jnigen.sh
index d5d7d58..b97f153 100755
--- a/tools/jnigen.sh
+++ b/tools/jnigen.sh
@@ -5,11 +5,9 @@ if [ "$1" == "--build" ]; then
./gradlew assembleDebug
fi
-java -jar tools/javacpp-0.7.jar -cp build/classes/debug/ -d jni/ -nocompile com.morlunk.jumble.audio.javacpp.*
+java -jar tools/javacpp-0.7.jar -cp build/classes/debug/ -d src/main/jni/ -nocompile com.morlunk.jumble.audio.javacpp.*
if [ "$1" == "--build" ]; then
# Build native libs
- pushd jni
- ndk-build
- popd
+ ndk-build -C src/main/jni
fi