mirror of
git://f0xx.org/android_cast
synced 2026-07-29 05:17:39 +03:00
23 lines
856 B
C
23 lines
856 B
C
/* package ndk/jni/androidcast_codecs.c */
|
|
|
|
/*********************************************************************
|
|
* androidcast_codecs.c
|
|
* Created at: Sun 17 May 2026 22:49:49 +0200
|
|
* Updated at: Sun 17 May 2026 22:49:49 +0200 by Anton Afanasyeu <a.afanasieff@gmail.com>
|
|
* Contributors:
|
|
* - Anton Afanasyeu <a.afanasieff@gmail.com> (1 commits, 11 lines)
|
|
* - Cursor Agent (project assistant)
|
|
* Digest: SHA256 b9b751d48b4e612c4400e84ff5cb5d6c9e82884ba76c906591bd8fdfc0559771
|
|
**********************************************************************/
|
|
#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;
|
|
}
|