Merge "Revert "Preload sfplugin_ccodec for performance"" into qt-dev am: fb4fab4fa3

am: de7e7b1e61

Change-Id: I614d66b28875df8cfa9529db9e7db417b57d9c08
This commit is contained in:
Ray Essick
2019-07-03 17:50:54 -07:00
committed by android-build-merger

View File

@@ -188,13 +188,6 @@ 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();