diff options
author | Dheeraj CVR <cvr.dheeraj@gmail.com> | 2013-07-18 15:38:39 -0700 |
---|---|---|
committer | Dheeraj CVR <cvr.dheeraj@gmail.com> | 2013-07-18 16:41:49 -0700 |
commit | ba84fbfa8d88dd3f8c716aa5b0f4d47663f64796 (patch) | |
tree | b305eb0628d9773a6a063037f07fbcadf7cdf7cb /overlay | |
parent | 44169ee78b775da1a93d2ae416a7cd0fc60eb6ee (diff) | |
download | device_samsung_smdk4412-common-ba84fbfa8d88dd3f8c716aa5b0f4d47663f64796.zip device_samsung_smdk4412-common-ba84fbfa8d88dd3f8c716aa5b0f4d47663f64796.tar.gz device_samsung_smdk4412-common-ba84fbfa8d88dd3f8c716aa5b0f4d47663f64796.tar.bz2 |
smdk4412-common: camera: fixes for camerawrapper
1. Enable ZSL Mode on both the cameras. Use Samsung Magic Command.
2. Remove workarounds that were meant for smdk4120. These are no
longer required on smdk4412. Fixes ZSL and Face Detection.
3. Force release the camera when the preview is stopped to prevent
issues with camera freezes that would require device reboots.
4. Disable Verbose logging to prevent spam during recording.
Change-Id: If50e6ec55a28653c8f81896e1b542e2e8cf75b07
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/packages/apps/Camera/res/values/config.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/overlay/packages/apps/Camera/res/values/config.xml b/overlay/packages/apps/Camera/res/values/config.xml index b9ec76b..9eb7a07 100644 --- a/overlay/packages/apps/Camera/res/values/config.xml +++ b/overlay/packages/apps/Camera/res/values/config.xml @@ -27,9 +27,9 @@ <!-- Samsung Camera Settings --> <bool name="hasSamsungCamSettings">true</bool> <!-- Use ZSL mode --> - <bool name="enableZSL">false</bool> - <!-- The camera HAL does its own preview state management during snaps --> - <bool name="previewStopsDuringSnapshot">true</bool> + <bool name="enableZSL">true</bool> + <!-- Magic for enabling ZSL on Samsung cameras --> + <bool name="sendMagicSamsungZSLCommand">true</bool> <!-- The camera removes the focus modes by default when touch-to-focus exists. Use this option to change that behavior --> <bool name="wantsFocusModes">true</bool> |