Lines Matching refs:expValues
963 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in setEVCompensation() local
973 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in setEVCompensation()
974 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in setEVCompensation()
978 &expValues); in setEVCompensation()
979 CAMHAL_LOGDB("old EV Compensation for OMX = 0x%x", (int)expValues.xEVCompensation); in setEVCompensation()
982 expValues.xEVCompensation = ( Gen3A.EVCompensation * ( 1 << Q16_OFFSET ) ) / 10; in setEVCompensation()
985 &expValues); in setEVCompensation()
986 CAMHAL_LOGDB("new EV Compensation for OMX = 0x%x", (int)expValues.xEVCompensation); in setEVCompensation()
990 ( unsigned int ) expValues.xEVCompensation, in setEVCompensation()
996 ( unsigned int ) expValues.xEVCompensation); in setEVCompensation()
1007 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in getEVCompensation() local
1016 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in getEVCompensation()
1017 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in getEVCompensation()
1021 &expValues); in getEVCompensation()
1026 Gen3A.EVCompensation = (10 * expValues.xEVCompensation) / (1 << Q16_OFFSET); in getEVCompensation()
1366 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in setISO() local
1382 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in setISO()
1384 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in setISO()
1389 &expValues); in setISO()
1403 expValues.bAutoSensitivity = OMX_TRUE; in setISO()
1405 expValues.bAutoSensitivity = OMX_FALSE; in setISO()
1406 expValues.nSensitivity = Gen3A.ISO; in setISO()
1407 expValRight.nSensitivity = expValues.nSensitivity; in setISO()
1412 &expValues); in setISO()
1421 ( unsigned int ) expValues.nSensitivity, in setISO()
1425 ( unsigned int ) expValues.nSensitivity); in setISO()
1436 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in getISO() local
1445 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in getISO()
1446 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in getISO()
1450 &expValues); in getISO()
1455 Gen3A.ISO = expValues.nSensitivity; in getISO()