Home | History | Annotate | Download | only in HAL

Lines Matching refs:expComp

2804     int expComp = params.getInt(KEY_EXPOSURE_COMPENSATION);
2811 if (prev_expComp != expComp) {
2812 if((expComp >= m_pCapability->exposure_compensation_min) &&
2813 (expComp <= m_pCapability->exposure_compensation_max)) {
2814 LOGD("new Exposure Compensation value : %d ", expComp);
2815 return setExposureCompensation(expComp);
2818 expComp,
8603 * @expComp : exposure compensation value
8609 int32_t QCameraParameters::setExposureCompensation(int expComp)
8612 snprintf(val, sizeof(val), "%d", expComp);
8617 if (ADD_SET_PARAM_ENTRY_TO_BATCH(m_pParamBuf, CAM_INTF_PARM_EXPOSURE_COMPENSATION, expComp)) {