Files
lockstep/app/src/main/cpp/jni_mpg123.cpp

19 lines
295 B
C++
Raw Normal View History

2026-03-02 09:42:44 +01:00
//
// Created by david on 02.03.2026.
//
#include <jni.h>
#include "mpg123.h"
2026-03-03 12:04:17 +01:00
#include <oboe/Oboe.h>
2026-03-02 09:42:44 +01:00
extern "C" {
2026-03-03 12:04:17 +01:00
// nice-to: merge with lockstep.cpp
2026-03-02 09:42:44 +01:00
JNIEXPORT jint JNICALL
Java_at_lockstep_pb_PlaybackEngine_native_1mpg123_1init
(JNIEnv *env, jclass) {
return mpg123_init();
}
}