Lines Matching refs:expValues

769     OMX_CONFIG_EXPOSUREVALUETYPE expValues;  in setEVCompensation()  local
779 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in setEVCompensation()
780 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in setEVCompensation()
784 &expValues); in setEVCompensation()
785 CAMHAL_LOGDB("old EV Compensation for OMX = 0x%x", (int)expValues.xEVCompensation); in setEVCompensation()
788 expValues.xEVCompensation = ( Gen3A.EVCompensation * ( 1 << Q16_OFFSET ) ) / 10; in setEVCompensation()
791 &expValues); in setEVCompensation()
792 CAMHAL_LOGDB("new EV Compensation for OMX = 0x%x", (int)expValues.xEVCompensation); in setEVCompensation()
796 ( unsigned int ) expValues.xEVCompensation, in setEVCompensation()
802 ( unsigned int ) expValues.xEVCompensation); in setEVCompensation()
813 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in getEVCompensation() local
822 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in getEVCompensation()
823 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in getEVCompensation()
827 &expValues); in getEVCompensation()
832 Gen3A.EVCompensation = (10 * expValues.xEVCompensation) / (1 << Q16_OFFSET); in getEVCompensation()
1184 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in setISO() local
1194 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in setISO()
1195 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in setISO()
1199 &expValues); in setISO()
1203 expValues.bAutoSensitivity = OMX_TRUE; in setISO()
1207 expValues.bAutoSensitivity = OMX_FALSE; in setISO()
1208 expValues.nSensitivity = Gen3A.ISO; in setISO()
1213 &expValues); in setISO()
1217 ( unsigned int ) expValues.nSensitivity, in setISO()
1223 ( unsigned int ) expValues.nSensitivity); in setISO()
1234 OMX_CONFIG_EXPOSUREVALUETYPE expValues; in getISO() local
1243 OMX_INIT_STRUCT_PTR (&expValues, OMX_CONFIG_EXPOSUREVALUETYPE); in getISO()
1244 expValues.nPortIndex = mCameraAdapterParameters.mPrevPortIndex; in getISO()
1248 &expValues); in getISO()
1253 Gen3A.ISO = expValues.nSensitivity; in getISO()