mirror of
git://f0xx.org/ac/ac-mobile-android
synced 2026-07-29 04:18:25 +03:00
initial
This commit is contained in:
25
ndk/jni/speex_bridge.c
Normal file
25
ndk/jni/speex_bridge.c
Normal file
@@ -0,0 +1,25 @@
|
||||
/* package ndk/jni/speex_bridge.c */
|
||||
|
||||
/*********************************************************************
|
||||
* speex_bridge.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, 21 lines)
|
||||
* - Cursor Agent (project assistant)
|
||||
* Digest: SHA256 5085e4a255dcad08ac2eb746ad1d1f64408a191f035d9a6ca83dab896b3e9a09
|
||||
**********************************************************************/
|
||||
#include <jni.h>
|
||||
|
||||
#ifndef ANDROIDCAST_HAVE_SPEEX
|
||||
#define ANDROIDCAST_HAVE_SPEEX 0
|
||||
#endif
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_com_foxx_androidcast_media_codec_jni_NativeCodecBridge_nativeIsSpeexAvailable(
|
||||
JNIEnv *env, jclass clazz) {
|
||||
(void)env;
|
||||
(void)clazz;
|
||||
return ANDROIDCAST_HAVE_SPEEX ? JNI_TRUE : JNI_FALSE;
|
||||
}
|
||||
Reference in New Issue
Block a user