Home
last modified time | relevance | path

Searched refs:sensor_info (Results 1 – 23 of 23) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/
H A Daec_xml2json.cpp249 …ensorinfoCalibV1ToCalibV2(const CamCalibDbContext_t *calib, CalibDb_Sensor_ParaV2_t* sensor_info) { in convertSensorinfoCalibV1ToCalibV2() argument
273 sensor_info->resolution.width = atoi(w.c_str()); in convertSensorinfoCalibV1ToCalibV2()
274 sensor_info->resolution.height = atoi(h.c_str()); in convertSensorinfoCalibV1ToCalibV2()
277 sensor_info->Gain2Reg.GainMode = EXPGAIN_MODE_LINEAR; in convertSensorinfoCalibV1ToCalibV2()
279 sensor_info->Gain2Reg.GainMode = EXPGAIN_MODE_NONLINEAR_DB; in convertSensorinfoCalibV1ToCalibV2()
281 sensor_info->Gain2Reg.GainRange_len = sensor_xml.GainRange.array_size; in convertSensorinfoCalibV1ToCalibV2()
282sensor_info->Gain2Reg.GainRange = (float*)malloc(sensor_info->Gain2Reg.GainRange_len * sizeof(floa… in convertSensorinfoCalibV1ToCalibV2()
283 …memcpy(sensor_info->Gain2Reg.GainRange, sensor_xml.GainRange.pGainRange, sensor_info->Gain2Reg.Gai… in convertSensorinfoCalibV1ToCalibV2()
285 sensor_info->Time2Reg.fCoeff[0] = sensor_xml.TimeFactor[0]; in convertSensorinfoCalibV1ToCalibV2()
286 sensor_info->Time2Reg.fCoeff[1] = sensor_xml.TimeFactor[1]; in convertSensorinfoCalibV1ToCalibV2()
[all …]
H A Daec_xml2json.h28 …SensorinfoCalibV1ToCalibV2(const CamCalibDbContext_t *calib, CalibDb_Sensor_ParaV2_t* sensor_info);
H A DRkAiqCalibDbV2.cpp58 calib_ctx->sensor_info = new CalibDb_Sensor_ParaV2_t(); in calibdbV2_ctx_new()
59 memset(calib_ctx->sensor_info, 0, sizeof(CalibDb_Sensor_ParaV2_t)); in calibdbV2_ctx_new()
73 if (calib_ctx->sensor_info) in calibdbV2_ctx_delete()
74 delete calib_ctx->sensor_info; in calibdbV2_ctx_delete()
521 ctx.sensor_info = &calibproj->sensor_calib; in toDefaultCalibDb()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rk_stream/stream_cfg/
H A DMediaInfo.cpp111 static XCamReturn get_sensor_caps(rk_sensor_full_info_t *sensor_info) { in get_sensor_caps() argument
118 V4l2SubDevice vdev(sensor_info->device_name.c_str()); in get_sensor_caps()
121 LOGE_RKSTREAM("failed to open dev (%s)", sensor_info->device_name.c_str()); in get_sensor_caps()
125 struct rkmodule_inf *minfo = &(sensor_info->mod_info); in get_sensor_caps()
127 …LOGE_RKSTREAM("@%s %s: Get sensor module info failed", __FUNCTION__, sensor_info->device_name.c_st… in get_sensor_caps()
130 sensor_info->len_name = std::string(minfo->base.lens); in get_sensor_caps()
140 sensor_info->frame_size.push_back(frameSize); in get_sensor_caps()
144 …LOGE_RKSTREAM("@%s %s: Enum sensor frame interval failed", __FUNCTION__, sensor_info->device_name.… in get_sensor_caps()
151 parse_module_info(rk_sensor_full_info_t *sensor_info) in parse_module_info() argument
155 std::string entity_name(sensor_info->sensor_name); in parse_module_info()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rk_stream/rkvi_demo/
H A Drkvi_demo.c164 printf("\n\n****** sensor %s infos: *********\n",s_info->sensor_info.sensor_name); in print_sensor_info()
166 if(s_info->sensor_info.support_fmt[i].width >0) in print_sensor_info()
168 s_info->sensor_info.support_fmt[i].width, in print_sensor_info()
169 s_info->sensor_info.support_fmt[i].height, in print_sensor_info()
170 s_info->sensor_info.support_fmt[i].format, in print_sensor_info()
171 s_info->sensor_info.support_fmt[i].fps, in print_sensor_info()
172 s_info->sensor_info.support_fmt[i].hdr_mode); in print_sensor_info()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/iq_parser_v2/
H A DRkAiqCalibDbV2Helper.h287 return ((CamCalibDbV2Context_t*)ctx)->sensor_info; in calibdbV2_get_module_ptr()
298 memcpy(&dst->sensor_calib, src->sensor_info, sizeof(CalibDb_Sensor_ParaV2_t)); in calibdbV2_to_tuningdb()
322 memcpy(dst->sensor_info, &src->sensor_calib, sizeof(CalibDb_Sensor_ParaV2_t)); in calibdbV2_from_tuningdb()
H A DRkAiqCalibDbTypesV2.h128 CalibDb_Sensor_ParaV2_t* sensor_info; member
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/hwi/isp20/
H A DCamHwIsp20.cpp168 static XCamReturn get_sensor_caps(rk_sensor_full_info_t *sensor_info) { in get_sensor_caps() argument
175 V4l2SubDevice vdev(sensor_info->device_name.c_str()); in get_sensor_caps()
178 LOGE_CAMHW_SUBM(ISP20HW_SUBM, "failed to open dev (%s)", sensor_info->device_name.c_str()); in get_sensor_caps()
182 struct rkmodule_inf *minfo = &(sensor_info->mod_info); in get_sensor_caps()
184 …M(ISP20HW_SUBM, "@%s %s: Get sensor module info failed", __FUNCTION__, sensor_info->device_name.c_… in get_sensor_caps()
187 sensor_info->len_name = std::string(minfo->base.lens); in get_sensor_caps()
205 sensor_info->frame_size.push_back(frameSize); in get_sensor_caps()
209 if(!formats.size() || !sensor_info->frame_size.size()) { in get_sensor_caps()
210 …M(ISP20HW_SUBM, "@%s %s: Enum sensor frame size failed", __FUNCTION__, sensor_info->device_name.c_… in get_sensor_caps()
223 sensor_info->frame_size.push_back(frameSize); in get_sensor_caps()
[all …]
H A DCamHwIsp20.h219 …XCamReturn get_sensor_pdafinfo(rk_sensor_full_info_t *sensor_info, rk_sensor_pdaf_info_t *pdaf_inf…
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/scene/
H A Dscene_manager.cpp205 ctx.sensor_info = &calibproj->sensor_calib; in refToScene()
490 calib->sensor_info = &calibproj->sensor_calib; in createSceneCalib()
/OK3568_Linux_fs/kernel/drivers/media/usb/gspca/
H A Dvc032x.c2793 struct sensor_info { struct
2804 static const struct sensor_info vc0321_probe_data[] = { argument
2845 static const struct sensor_info vc0323_probe_data[] = {
3005 const struct sensor_info *ptsensor_info; in vc032x_probe_sensor()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/uAPI/
H A Drk_aiq_user_api_sysctl.cpp390 ctx->_rkAiqManager->setCamPhyId(s_info->sensor_info.phyId); in rk_aiq_uapi_sysctl_init()
392 ctx->_camPhyId = s_info->sensor_info.phyId; in rk_aiq_uapi_sysctl_init()
551 ctx->_camHw->setCamPhyId(s_info->sensor_info.phyId); in rk_aiq_uapi_sysctl_init()
566 ctx->_analyzer->setCamPhyId(s_info->sensor_info.phyId); in rk_aiq_uapi_sysctl_init()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/common/
H A Drk_aiq_types.h314 rk_aiq_sensor_info_t sensor_info; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/drm/
H A Damdgpu_drm.h789 } sensor_info; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/drm/
H A Damdgpu_drm.h789 } sensor_info; member
/OK3568_Linux_fs/external/linux-rga/samples/im2d_slt/third-party/libdrm/include/libdrm/
H A Damdgpu_drm.h854 } sensor_info; member
/OK3568_Linux_fs/external/linux-rga/samples/utils/3rdparty/libdrm/include/libdrm/
H A Damdgpu_drm.h854 } sensor_info; member
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/include/libdrm/
H A Damdgpu_drm.h854 } sensor_info; member
/OK3568_Linux_fs/kernel/include/uapi/drm/
H A Damdgpu_drm.h878 } sensor_info; member
/OK3568_Linux_fs/kernel/drivers/media/platform/rockchip/cif/
H A Dcapture.c5096 struct rkcif_sensor_info *sensor_info = dev->active_sensor; in rkcif_determine_input_mode() local
5103 ret = v4l2_subdev_call(sensor_info->sd, video, querystd, &std); in rkcif_determine_input_mode()
5125 if (sensor_info->mbus.type == V4L2_MBUS_BT656) in rkcif_determine_input_mode()
5160 struct rkcif_sensor_info *sensor_info = dev->active_sensor; in rkcif_determine_input_mode_rk3588() local
5167 ret = v4l2_subdev_call(sensor_info->sd, video, querystd, &std); in rkcif_determine_input_mode_rk3588()
5187 if (sensor_info->mbus.type == V4L2_MBUS_BT656) { in rkcif_determine_input_mode_rk3588()
5188 if ((sensor_info->mbus.flags & CIF_DVP_PCLK_DUAL_EDGE) == CIF_DVP_PCLK_DUAL_EDGE) in rkcif_determine_input_mode_rk3588()
5617 struct rkcif_sensor_info *sensor_info; in rkcif_stream_start() local
5636 sensor_info = dev->active_sensor; in rkcif_stream_start()
5637 mbus = &sensor_info->mbus; in rkcif_stream_start()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_kms.c870 switch (info->sensor_info.type) { in amdgpu_info_ioctl()
950 info->sensor_info.type); in amdgpu_info_ioctl()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/
H A Drkisp_demo.cpp1011 printf("isp version: %d, sensor name: %s\n", info.isp_hw_ver, info.sensor_info.sensor_name);
2305 rk_aiq_sensor_info_t* sns_info = &s_info.sensor_info;
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tools/iqConverTer/src/
H A Diqconverter.cpp38 calibproj.sensor_calib = *calibv2->sensor_info; in convert()