Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6844778e authored by Ray Essick's avatar Ray Essick Committed by android-build-merger
Browse files

Merge "Preload sfplugin_ccodec for performance" into qt-dev am: 878a6b20 am: 0ef82ad0

am: b816bc76

Change-Id: I1f562a4c91ef6d5d803ddb8513f5a8b1c4bd86cc
parents 913c8074 b816bc76
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -188,6 +188,13 @@ public class ZygoteInit {
        System.loadLibrary("android");
        System.loadLibrary("compiler_rt");
        System.loadLibrary("jnigraphics");

        // tolerate missing sfplugin_ccodec which is only present on Codec 2 devices
        try {
            System.loadLibrary("sfplugin_ccodec");
        } catch (Error | RuntimeException e) {
            Log.w(TAG, "Problem preloading sfplugin_ccodec: " + e);
        }
    }

    native private static void nativePreloadAppProcessHALs();