diff options
| author | Igor Murashkin <iam@google.com> | 2012-10-08 15:32:09 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2012-10-08 15:32:09 -0700 |
| commit | 4a4253b979586c9de21425f5e3cb34da9f1e57de (patch) | |
| tree | 387a1cb3a137494e946ecbc7be88f99d1798f191 | |
| parent | 9ea63b3bfd696bcce9cb28e86218a3449dd699d8 (diff) | |
| parent | 82edd5431951f461058c07b73c0dbc093aa45c99 (diff) | |
| download | frameworks_av-4a4253b979586c9de21425f5e3cb34da9f1e57de.zip frameworks_av-4a4253b979586c9de21425f5e3cb34da9f1e57de.tar.gz frameworks_av-4a4253b979586c9de21425f5e3cb34da9f1e57de.tar.bz2 | |
am 82edd543: Camera2: isSmoothZoomSupported should return FALSE
* commit '82edd5431951f461058c07b73c0dbc093aa45c99':
Camera2: isSmoothZoomSupported should return FALSE
| -rw-r--r-- | services/camera/libcameraservice/camera2/Parameters.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/camera/libcameraservice/camera2/Parameters.cpp b/services/camera/libcameraservice/camera2/Parameters.cpp index 91466ee..199e525 100644 --- a/services/camera/libcameraservice/camera2/Parameters.cpp +++ b/services/camera/libcameraservice/camera2/Parameters.cpp @@ -729,7 +729,7 @@ status_t Parameters::initialize(const CameraMetadata *info) { params.set(CameraParameters::KEY_ZOOM_SUPPORTED, CameraParameters::TRUE); params.set(CameraParameters::KEY_SMOOTH_ZOOM_SUPPORTED, - CameraParameters::TRUE); + CameraParameters::FALSE); params.set(CameraParameters::KEY_FOCUS_DISTANCES, "Infinity,Infinity,Infinity"); |
