diff options
author | Jun Tian <jun.j.tian@intel.com> | 2013-07-03 13:49:38 +0800 |
---|---|---|
committer | Jun Tian <jun.j.tian@intel.com> | 2013-07-04 08:09:35 +0800 |
commit | 70a29f182f6696b089d1c376fc5aadd7a20f6231 (patch) | |
tree | 30d915680433623e93e61a3645390eb89bb1c3eb /src | |
parent | b818e8e15a8a0d1ad1f04f01797974de138b59d1 (diff) | |
download | LegacyCamera-70a29f182f6696b089d1c376fc5aadd7a20f6231.zip LegacyCamera-70a29f182f6696b089d1c376fc5aadd7a20f6231.tar.gz LegacyCamera-70a29f182f6696b089d1c376fc5aadd7a20f6231.tar.bz2 |
Fix the loading library issue of panorama mode in Legacycamera app
The Legacycamera app requires libjni_legacymosaic module,
and this module is included in the makefile.
But in the implementation code, it loads the libjni_mosaic module.
This patch changed the loading library to fix crash issue
when using panorama mode in the Legacycamera.
Change-Id: Id7d4192b076412c674ef716c9ffcb31fe5cb6619
Signed-off-by: Jun Tian <jun.j.tian@intel.com>
Signed-off-by: Zhu Yanglinx <yanglinx.zhu@intel.com>
Signed-off-by: Chang Panfeng <panfengx.chang@intel.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/camera/panorama/Mosaic.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/camera/panorama/Mosaic.java b/src/com/android/camera/panorama/Mosaic.java index 5064cec..90bf2ad 100644 --- a/src/com/android/camera/panorama/Mosaic.java +++ b/src/com/android/camera/panorama/Mosaic.java @@ -93,7 +93,7 @@ public class Mosaic { static { - System.loadLibrary("jni_mosaic"); + System.loadLibrary("jni_legacymosaic"); } /** |