Home
last modified time | relevance | path

Searched refs:aiqParams (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/
H A DRkAiqCamGroupManager.cpp452 RkAiqFullParams* aiqParams = results->data().ptr(); in RelayAiqCoreResults() local
455 if (aiqParams->m##lc##Params.ptr()) { \ in RelayAiqCoreResults()
456 frame_id = aiqParams->m##lc##Params->data()->frame_id; \ in RelayAiqCoreResults()
474 if (scam_aiqParams != aiqParams) \ in RelayAiqCoreResults()
475 scam_aiqParams->m##lc##Params = aiqParams->m##lc##Params; \ in RelayAiqCoreResults()
1006 RkAiqFullParams* aiqParams = NULL; in reProcess() local
1020 aiqParams = scam_res->_fullIspParam->data().ptr(); in reProcess()
1022 if ((aiqParams->mExposureParams.ptr())) { in reProcess()
1023 … scam_3a_res->aec.exp_tbl = aiqParams->mExposureParams->data()->result.ae_proc_res_rk.exp_set_tbl; in reProcess()
1024 …scam_3a_res->aec.exp_tbl_size = &aiqParams->mExposureParams->data()->result.ae_proc_res_rk.exp_set… in reProcess()
[all …]
H A DRkAiqManager.cpp734 RkAiqFullParams* aiqParams = NULL; in applyAnalyzerResult() local
741 aiqParams = results->data().ptr(); in applyAnalyzerResult()
744 if (aiqParams->mExposureParams.ptr()) { in applyAnalyzerResult()
745 aiqParams->mExposureParams->setType(RESULT_TYPE_EXPOSURE_PARAM); in applyAnalyzerResult()
746 results_list.push_back(aiqParams->mExposureParams); in applyAnalyzerResult()
749 if (aiqParams->mIrisParams.ptr()) { in applyAnalyzerResult()
750 aiqParams->mIrisParams->setType(RESULT_TYPE_IRIS_PARAM); in applyAnalyzerResult()
751 results_list.push_back(aiqParams->mIrisParams); in applyAnalyzerResult()
754 …if (aiqParams->mFocusParams.ptr() && (ignoreIsUpdate || aiqParams->mFocusParams->data()->is_update… in applyAnalyzerResult()
755 aiqParams->mFocusParams->setType(RESULT_TYPE_FOCUS_PARAM); in applyAnalyzerResult()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/aiq_core/
H A DRkAiqCore.cpp685 RkAiqFullParams* aiqParams = NULL; in analyzeInternal() local
728 aiqParams = aiqParamProxy->data().ptr(); in analyzeInternal()
732 ret = getAiqParamsBuffer(aiqParams, type, frame_id); in analyzeInternal()
737 shared->fullParams = aiqParams; in analyzeInternal()
750 curHdl->genIspResult(aiqParams, curParams.ptr()); in analyzeInternal()
826 RkAiqCore::getAiqParamsBuffer(RkAiqFullParams* aiqParams, int type, uint32_t frame_id) in getAiqParamsBuffer() argument
829 if (!aiqParams->m##lc##Params.ptr()) { \ in getAiqParamsBuffer()
831 aiqParams->m##lc##Params = mAiqIsp##lc##ParamsPool->get_item(); \ in getAiqParamsBuffer()
832 aiqParams->m##lc##Params->data()->frame_id = frame_id; \ in getAiqParamsBuffer()
833 aiqParams->m##lc##Params->data()->is_update = false; \ in getAiqParamsBuffer()
[all …]
H A DRkAiqCore.h652 XCamReturn getAiqParamsBuffer(RkAiqFullParams* aiqParams, int type, uint32_t frame_id);