Searched refs:max_dim (Results 1 – 6 of 6) sorted by relevance
11828 int32_t QCameraParameters::getSensorOutputSize(cam_dimension_t max_dim, in getSensorOutputSize() argument11843 max_dim.width = m_pCapability->quadra_cfa_dim[0].width; in getSensorOutputSize()11844 max_dim.height = m_pCapability->quadra_cfa_dim[0].height; in getSensorOutputSize()11847 if (pic_dim.width > max_dim.width) { in getSensorOutputSize()11848 max_dim.width = pic_dim.width; in getSensorOutputSize()11850 if (pic_dim.height > max_dim.height) { in getSensorOutputSize()11851 max_dim.height = pic_dim.height; in getSensorOutputSize()11856 if (max_dim.width == 0 || max_dim.height == 0) { in getSensorOutputSize()11857 max_dim = m_pCapability->raw_dim[0]; in getSensorOutputSize()11865 if (ADD_SET_PARAM_ENTRY_TO_BATCH(m_pParamBuf, CAM_INTF_PARM_MAX_DIMENSION, max_dim)) { in getSensorOutputSize()[all …]
165 int32_t updateRAW(cam_dimension_t max_dim);
7393 cam_dimension_t str_dim,max_dim; in prepareRawStream() local7396 max_dim.width = 0; in prepareRawStream()7397 max_dim.height = 0; in prepareRawStream()7410 if (str_dim.width > max_dim.width) { in prepareRawStream()7411 max_dim.width = str_dim.width; in prepareRawStream()7413 if (str_dim.height > max_dim.height) { in prepareRawStream()7414 max_dim.height = str_dim.height; in prepareRawStream()7429 if (str_dim.width > max_dim.width) { in prepareRawStream()7430 max_dim.width = str_dim.width; in prepareRawStream()7432 if (str_dim.height > max_dim.height) { in prepareRawStream()[all …]
733 int32_t updateRAW(cam_dimension_t max_dim);739 int32_t getSensorOutputSize(cam_dimension_t max_dim, cam_dimension_t &sensor_dim,
594 int32_t QCameraParametersIntf::updateRAW(cam_dimension_t max_dim) in updateRAW() argument598 return mImpl->updateRAW(max_dim); in updateRAW()
1568 cam_dimension_t max_dim = {0, 0}; in getSensorModeInfo() local1570 if (mStreamConfigInfo.stream_sizes[i].width > max_dim.width) in getSensorModeInfo()1571 max_dim.width = mStreamConfigInfo.stream_sizes[i].width; in getSensorModeInfo()1572 if (mStreamConfigInfo.stream_sizes[i].height > max_dim.height) in getSensorModeInfo()1573 max_dim.height = mStreamConfigInfo.stream_sizes[i].height; in getSensorModeInfo()1579 max_dim); in getSensorModeInfo()