Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.
This repository was archived by the owner on May 2, 2025. It is now read-only.

Does anyone know where nativeInit GStreamer is? #16

Description

@khomin

Does anyone know where nativeInit GStreamer is?

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions