[Bug 751664] New: gstjniutils.c - JNI method IDs not set for android platform causing app to crash during runtime.

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Mon Jun 29 09:23:33 PDT 2015


https://bugzilla.gnome.org/show_bug.cgi?id=751664

            Bug ID: 751664
           Summary: gstjniutils.c - JNI method IDs not set for android
                    platform causing app to crash during runtime.
    Classification: Platform
           Product: GStreamer
           Version: git master
                OS: other
            Status: NEW
          Severity: normal
          Priority: Normal
         Component: gst-plugins-bad
          Assignee: gstreamer-bugs at lists.freedesktop.org
          Reporter: msg4misa at gmail.com
        QA Contact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---

initialize_classes not invoked from gst_amc_jni_initialize_java_vm.

reason:
   if (java_vm) {
     GST_DEBUG ("Java VM already provided by the application");    
     return TRUE;
   }

the following fix works fine:
if (java_vm) {
     GST_DEBUG ("Java VM already provided by the application");
     return initialize_classes ();
}

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list