FFmpegKit Android API 5.1
|
Go to the source code of this file.
Functions | |
jint | JNI_OnLoad (JavaVM *vm, void *reserved) |
JNIEXPORT jstring JNICALL | Java_com_arthenica_ffmpegkit_AbiDetect_getNativeAbi (JNIEnv *env, jclass object) |
JNIEXPORT jstring JNICALL | Java_com_arthenica_ffmpegkit_AbiDetect_getNativeCpuAbi (JNIEnv *env, jclass object) |
JNIEXPORT jboolean JNICALL | Java_com_arthenica_ffmpegkit_AbiDetect_isNativeLTSBuild (JNIEnv *env, jclass object) |
JNIEXPORT jstring JNICALL | Java_com_arthenica_ffmpegkit_AbiDetect_getNativeBuildConf (JNIEnv *env, jclass object) |
Variables | |
const char * | abiDetectClassName = "com/arthenica/ffmpegkit/AbiDetect" |
JNINativeMethod | abiDetectMethods [] |
JNIEXPORT jstring JNICALL Java_com_arthenica_ffmpegkit_AbiDetect_getNativeAbi | ( | JNIEnv * | env, |
jclass | object | ||
) |
Returns loaded ABI name.
env | pointer to native method interface |
object | reference to the class on which this method is invoked |
Definition at line 70 of file ffmpegkit_abidetect.c.
JNIEXPORT jstring JNICALL Java_com_arthenica_ffmpegkit_AbiDetect_getNativeBuildConf | ( | JNIEnv * | env, |
jclass | object | ||
) |
Returns build configuration for FFmpeg.
env | pointer to native method interface |
object | reference to the class on which this method is invoked |
Definition at line 142 of file ffmpegkit_abidetect.c.
JNIEXPORT jstring JNICALL Java_com_arthenica_ffmpegkit_AbiDetect_getNativeCpuAbi | ( | JNIEnv * | env, |
jclass | object | ||
) |
Returns ABI name of the running cpu.
env | pointer to native method interface |
object | reference to the class on which this method is invoked |
Definition at line 93 of file ffmpegkit_abidetect.c.
JNIEXPORT jboolean JNICALL Java_com_arthenica_ffmpegkit_AbiDetect_isNativeLTSBuild | ( | JNIEnv * | env, |
jclass | object | ||
) |
Returns whether FFmpegKit release is a long term release or not.
env | pointer to native method interface |
object | reference to the class on which this method is invoked |
Definition at line 127 of file ffmpegkit_abidetect.c.
jint JNI_OnLoad | ( | JavaVM * | vm, |
void * | reserved | ||
) |
Called when 'abidetect' native library is loaded.
vm | pointer to the running virtual machine |
reserved | reserved |
Definition at line 42 of file ffmpegkit_abidetect.c.
const char* abiDetectClassName = "com/arthenica/ffmpegkit/AbiDetect" |
Full name of the Java class that owns native functions in this file.
Definition at line 25 of file ffmpegkit_abidetect.c.
JNINativeMethod abiDetectMethods[] |
Prototypes of native functions defined by this file.
Definition at line 28 of file ffmpegkit_abidetect.c.