mirror of
git://f0xx.org/ac/ac-mobile-android
synced 2026-07-29 04:18:25 +03:00
initial
This commit is contained in:
23
ndk/jni/androidcast_codecs.c
Normal file
23
ndk/jni/androidcast_codecs.c
Normal file
@@ -0,0 +1,23 @@
|
||||
/* package ndk/jni/androidcast_codecs.c */
|
||||
|
||||
/*********************************************************************
|
||||
* androidcast_codecs.c
|
||||
* Created at: Sun 17 May 2026 22:49:49 +0200
|
||||
* Updated at: Wed 20 May 2026 15:17:13 +0200 by Anton Afanasyeu <a.afanasieff@gmail.com>
|
||||
* Commit: 5d8e82d2e60a21fff3138d2a394ee4e8b4c6dcb8
|
||||
* Contributors:
|
||||
* - Anton Afanasyeu <a.afanasieff@gmail.com> (2 commits, 19 lines)
|
||||
* - Cursor Agent (project assistant)
|
||||
* Digest: SHA256 a6e0a5cdb3c06c23f932e9927494a53786a587533964767fab09fce1da5028a8
|
||||
**********************************************************************/
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user