jni: add libmpg123

This commit is contained in:
2026-03-02 09:42:44 +01:00
parent fe0b740bff
commit ef5a0e678c
20 changed files with 7862 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//
// Created by david on 02.03.2026.
//
#include <jni.h>
#include "mpg123.h"
extern "C" {
JNIEXPORT jint JNICALL
Java_at_lockstep_pb_PlaybackEngine_native_1mpg123_1init
(JNIEnv *env, jclass) {
return mpg123_init();
}
}