108 lines
3.8 KiB
C++
108 lines
3.8 KiB
C++
/*
|
|
* Copyright 2024 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
|
|
*
|
|
* https://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.
|
|
*/
|
|
|
|
#ifdef __ANDROID__
|
|
#include <android/log.h>
|
|
#endif
|
|
#include <jni.h>
|
|
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
|
|
#include "IAMF_decoder.h"
|
|
#include "IAMF_defines.h"
|
|
|
|
#ifdef __ANDROID__
|
|
#define LOG_TAG "iamf_jni"
|
|
#define LOGE(...) \
|
|
((void)__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__))
|
|
#else // __ANDROID__
|
|
#define LOGE(...) \
|
|
do { \
|
|
} while (0)
|
|
#endif // __ANDROID__
|
|
|
|
#define DECODER_FUNC(RETURN_TYPE, NAME, ...) \
|
|
extern "C" { \
|
|
JNIEXPORT RETURN_TYPE Java_androidx_media3_decoder_iamf_IamfDecoder_##NAME( \
|
|
JNIEnv* env, jobject thiz, ##__VA_ARGS__); \
|
|
} \
|
|
JNIEXPORT RETURN_TYPE Java_androidx_media3_decoder_iamf_IamfDecoder_##NAME( \
|
|
JNIEnv* env, jobject thiz, ##__VA_ARGS__)
|
|
|
|
jint JNI_OnLoad(JavaVM* vm, void* reserved) {
|
|
JNIEnv* env;
|
|
if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
|
|
return -1;
|
|
}
|
|
return JNI_VERSION_1_6;
|
|
}
|
|
DECODER_FUNC(jint, iamfLayoutBinauralChannelsCount) {
|
|
return IAMF_layout_binaural_channels_count();
|
|
}
|
|
|
|
DECODER_FUNC(jint, iamfConfigDecoder, jbyteArray initializationDataArray,
|
|
jint bitDepth, jint sampleRate, jint soundSystem,
|
|
jlong decoderRawPointer) {
|
|
IAMF_DecoderHandle decoder =
|
|
reinterpret_cast<IAMF_DecoderHandle>(decoderRawPointer);
|
|
IAMF_decoder_peak_limiter_enable(decoder, 0);
|
|
IAMF_decoder_set_bit_depth(decoder, bitDepth);
|
|
IAMF_decoder_set_sampling_rate(decoder, sampleRate);
|
|
IAMF_decoder_output_layout_set_sound_system(decoder,
|
|
(IAMF_SoundSystem)soundSystem);
|
|
|
|
uint32_t* bytes_read = nullptr;
|
|
jbyte* initializationDataBytes =
|
|
env->GetByteArrayElements(initializationDataArray, 0);
|
|
|
|
int status = IAMF_decoder_configure(
|
|
decoder, reinterpret_cast<uint8_t*>(initializationDataBytes),
|
|
env->GetArrayLength(initializationDataArray), bytes_read);
|
|
env->ReleaseByteArrayElements(initializationDataArray,
|
|
initializationDataBytes, 0);
|
|
return status;
|
|
}
|
|
|
|
DECODER_FUNC(jint, iamfDecode, jobject inputBuffer, jint inputSize,
|
|
jobject outputBuffer, jlong decoderRawPointer) {
|
|
uint32_t* rsize = nullptr;
|
|
return IAMF_decoder_decode(
|
|
reinterpret_cast<IAMF_DecoderHandle>(decoderRawPointer),
|
|
reinterpret_cast<const uint8_t*>(
|
|
env->GetDirectBufferAddress(inputBuffer)),
|
|
inputSize, rsize,
|
|
reinterpret_cast<void*>(env->GetDirectBufferAddress(outputBuffer)));
|
|
}
|
|
|
|
DECODER_FUNC(jint, iamfGetMaxFrameSize, jlong decoderRawPointer) {
|
|
return IAMF_decoder_get_stream_info(
|
|
reinterpret_cast<IAMF_DecoderHandle>(decoderRawPointer))
|
|
->max_frame_size;
|
|
}
|
|
|
|
DECODER_FUNC(jint, iamfGetChannelCount, jint soundSystem) {
|
|
return IAMF_layout_sound_system_channels_count((IAMF_SoundSystem)soundSystem);
|
|
}
|
|
|
|
DECODER_FUNC(void, iamfClose, jlong decoderRawPointer) {
|
|
IAMF_decoder_close(reinterpret_cast<IAMF_DecoderHandle>(decoderRawPointer));
|
|
}
|
|
|
|
DECODER_FUNC(jlong, iamfOpen) {
|
|
return reinterpret_cast<intptr_t>(IAMF_decoder_open());
|
|
}
|