You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 2, 2025. It is now read-only.
I have cmake for my project
It works fine except 'ahc'
I see 2 different 'nativeInit' methods
public class GStreamer {
private static native void nativeInit(Context context) throws Exception;
public static void init(Context context) throws Exception {
copyFonts(context);
copyCaCertificates(context);
nativeInit(context);
}
private GstAhc(Context context) {
nativeInit();
But i see one JNI in 'android_camera.c' only
So i had to comment the first nativeInit in Gstreamer.java
But gst_element_factory_make("ahcsrc".. returns NULL
Apparently i still need GStreamer nativeInit to init 'ahc'
I searched for it in the whole gstreamer sources and could not find it
Does anyone know where nativeInit GStreamer is?
I have cmake for my project
It works fine except 'ahc'
I see 2 different 'nativeInit' methods
But i see one JNI in 'android_camera.c' only
So i had to comment the first nativeInit in Gstreamer.java
But gst_element_factory_make("ahcsrc".. returns NULL
Apparently i still need GStreamer nativeInit to init 'ahc'
I searched for it in the whole gstreamer sources and could not find it