blob: 0efaff07d12b0d4080ab9c9a136bf12664c95252 [file] [log] [blame]
/*
* Copyright 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <jni.h>
#include <oboe/Oboe.h>
#include "HelloOboeEngine.h"
#include "logging_macros.h"
extern "C" {
/**
* Creates the audio engine
*
* @return a pointer to the audio engine. This should be passed to other methods
*/
JNIEXPORT jlong JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1createEngine(
JNIEnv *env,
jclass /*unused*/) {
// We use std::nothrow so `new` returns a nullptr if the engine creation fails
HelloOboeEngine *engine = new(std::nothrow) HelloOboeEngine();
if (engine == nullptr) {
LOGE("Could not instantiate HelloOboeEngine");
return 0;
}
auto result = engine->start();
if (result != oboe::Result::OK) {
LOGE("Opening and starting stream failed. Returned %d", result);
engine->stop();
delete engine;
return 0;
}
return reinterpret_cast<jlong>(engine);
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1deleteEngine(
JNIEnv *env,
jclass,
jlong engineHandle) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine *>(engineHandle);
engine->stop();
delete engine;
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setToneOn(
JNIEnv *env,
jclass,
jlong engineHandle,
jboolean isToneOn) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine *>(engineHandle);
if (engine == nullptr) {
LOGE("Engine handle is invalid, call createHandle() to create a new one");
return;
}
engine->tap(isToneOn);
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setAudioApi(
JNIEnv *env,
jclass type,
jlong engineHandle,
jint audioApi) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle);
if (engine == nullptr) {
LOGE("Engine handle is invalid, call createHandle() to create a new one");
return;
}
oboe::AudioApi api = static_cast<oboe::AudioApi>(audioApi);
engine->setAudioApi(api);
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setAudioDeviceId(
JNIEnv *env,
jclass,
jlong engineHandle,
jint deviceId) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle);
if (engine == nullptr) {
LOGE("Engine handle is invalid, call createHandle() to create a new one");
return;
}
engine->setDeviceId(deviceId);
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setChannelCount(
JNIEnv *env,
jclass type,
jlong engineHandle,
jint channelCount) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle);
if (engine == nullptr) {
LOGE("Engine handle is invalid, call createHandle() to create a new one");
return;
}
engine->setChannelCount(channelCount);
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setBufferSizeInBursts(
JNIEnv *env,
jclass,
jlong engineHandle,
jint bufferSizeInBursts) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle);
if (engine == nullptr) {
LOGE("Engine handle is invalid, call createHandle() to create a new one");
return;
}
engine->setBufferSizeInBursts(bufferSizeInBursts);
}
JNIEXPORT jdouble JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1getCurrentOutputLatencyMillis(
JNIEnv *env,
jclass,
jlong engineHandle) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle);
if (engine == nullptr) {
LOGE("Engine is null, you must call createEngine before calling this method");
return static_cast<jdouble>(-1.0);
}
return static_cast<jdouble>(engine->getCurrentOutputLatencyMillis());
}
JNIEXPORT jboolean JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1isLatencyDetectionSupported(
JNIEnv *env,
jclass type,
jlong engineHandle) {
HelloOboeEngine *engine = reinterpret_cast<HelloOboeEngine*>(engineHandle);
if (engine == nullptr) {
LOGE("Engine is null, you must call createEngine before calling this method");
return JNI_FALSE;
}
return (engine->isLatencyDetectionSupported() ? JNI_TRUE : JNI_FALSE);
}
JNIEXPORT void JNICALL
Java_com_google_oboe_samples_hellooboe_PlaybackEngine_native_1setDefaultStreamValues(
JNIEnv *env,
jclass type,
jint sampleRate,
jint framesPerBurst) {
oboe::DefaultStreamValues::SampleRate = (int32_t) sampleRate;
oboe::DefaultStreamValues::FramesPerBurst = (int32_t) framesPerBurst;
}
} // extern "C"