1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 07:39:15 +03:00
This commit is contained in:
Anton Afanasyeu
2026-05-17 22:49:49 +02:00
parent ab5c28b49a
commit 4f0be2785d
219 changed files with 14883 additions and 437 deletions

View File

@@ -0,0 +1,11 @@
#include <jni.h>
#include <android/log.h>
#define LOG_TAG "androidcast_codecs"
JNIEXPORT jint JNI_OnLoad(JavaVM *vm, void *reserved) {
(void)vm;
(void)reserved;
__android_log_print(ANDROID_LOG_INFO, LOG_TAG, "androidcast codecs native library loaded");
return JNI_VERSION_1_6;
}