summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike J. Chen <mjchen@sta.samsung.com>2010-10-27 19:55:10 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-27 19:55:10 -0700
commit88bfb935e7ea2ce06a6021df84bb952eb94432b0 (patch)
treecf113499a5bac87025f70e017110f6391d2933b9
parent3a6c04bb403b46db7481517f3be598604071b106 (diff)
parentefbd4cb5c555608cb0abd292ca228768211d7226 (diff)
downloaddevice_samsung_crespo-88bfb935e7ea2ce06a6021df84bb952eb94432b0.zip
device_samsung_crespo-88bfb935e7ea2ce06a6021df84bb952eb94432b0.tar.gz
device_samsung_crespo-88bfb935e7ea2ce06a6021df84bb952eb94432b0.tar.bz2
am efbd4cb5: S5PC11X: libcamera: Fix nightshot mode exception
-rw-r--r--libcamera/SecCameraHWInterface.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/libcamera/SecCameraHWInterface.cpp b/libcamera/SecCameraHWInterface.cpp
index 509f4fd..3cc4876 100644
--- a/libcamera/SecCameraHWInterface.cpp
+++ b/libcamera/SecCameraHWInterface.cpp
@@ -1696,6 +1696,23 @@ status_t CameraHardwareSec::setParameters(const CameraParameters& params)
}
}
+ // fps range
+ int new_min_fps = 0;
+ int new_max_fps = 0;
+ int current_min_fps, current_max_fps;
+ params.getPreviewFpsRange(&new_min_fps, &new_max_fps);
+ mParameters.getPreviewFpsRange(&current_min_fps, &current_max_fps);
+ /* our fps range is determined by the sensor, reject any request
+ * that isn't exactly what we're already at.
+ */
+ if ((new_min_fps != current_min_fps) || (new_max_fps != current_max_fps)) {
+ LOGW("%s : requested new_min_fps = %d, new_max_fps = %d not allowed",
+ __func__, new_min_fps, new_max_fps);
+ LOGE("%s : current_min_fps = %d, current_max_fps = %d",
+ __func__, current_min_fps, current_max_fps);
+ ret = UNKNOWN_ERROR;
+ }
+
// scene mode
const char *new_scene_mode_str = params.get(CameraParameters::KEY_SCENE_MODE);
@@ -1842,23 +1859,6 @@ status_t CameraHardwareSec::setParameters(const CameraParameters& params)
// ---------------------------------------------------------------------------
- // fps range
- int new_min_fps = 0;
- int new_max_fps = 0;
- int current_min_fps, current_max_fps;
- params.getPreviewFpsRange(&new_min_fps, &new_max_fps);
- mParameters.getPreviewFpsRange(&current_min_fps, &current_max_fps);
- /* our fps range is determined by the sensor, reject any request
- * that isn't exactly what we're already at.
- */
- if ((new_min_fps != current_min_fps) || (new_max_fps != current_max_fps)) {
- LOGW("%s : requested new_min_fps = %d, new_max_fps = %d not allowed",
- __func__, new_min_fps, new_max_fps);
- LOGE("%s : current_min_fps = %d, current_max_fps = %d",
- __func__, current_min_fps, current_max_fps);
- ret = UNKNOWN_ERROR;
- }
-
// image effect
const char *new_image_effect_str = params.get(CameraParameters::KEY_EFFECT);
if (new_image_effect_str != NULL) {