Lines Matching defs:param
617 * @param : reference to parameters object
623 int32_t QCameraChannel::UpdateStreamBasedParameters(QCameraParametersIntf ¶m)
627 if (param.isPreviewFlipChanged()) {
638 (uint32_t)param.getFlipMode(CAM_STREAM_TYPE_PREVIEW);
646 if (param.isVideoFlipChanged()) {
657 (uint32_t)param.getFlipMode(CAM_STREAM_TYPE_VIDEO);
665 if (param.isSnapshotFlipChanged()) {
678 (uint32_t)param.getFlipMode(CAM_STREAM_TYPE_SNAPSHOT);
1092 * @param : reference to parameters
1103 cam_padding_info_t *paddingInfo, QCameraParametersIntf ¶m, bool contStream,
1130 if (param.getofflineRAW() && !((pStream->isTypeOf(CAM_STREAM_TYPE_RAW))
1140 && (!param.getofflineRAW())) {
1147 && !((param.getManualCaptureMode() >=
1148 CAM_MANUAL_CAPTURE_TYPE_3) || (param.getQuadraCfa())))
1161 if (!param.needThumbnailReprocess(&feature_mask)) {
1182 if (!param.getQuadraCfa()) {
1215 if (param.getofflineRAW() && (pStream->isTypeOf(CAM_STREAM_TYPE_RAW)
1218 param.getStreamFormat(CAM_STREAM_TYPE_OFFLINE_PROC, streamInfo->fmt);
1231 param.getThumbnailSize(&(streamInfo->dim.width),
1237 if ((param.isPostProcScaling() || param.isDCmAsymmetricSnapMode()) &&
1239 rc = param.getStreamDimension(CAM_STREAM_TYPE_OFFLINE_PROC,
1241 } else if ((param.getofflineRAW()) &&
1244 if ((param.getQuadraCfa()) &&
1248 param.getStreamDimension(CAM_STREAM_TYPE_SNAPSHOT,streamInfo->dim);
1284 param.getStreamRotation(streamInfo->stream_type,
1312 if (param.isHDREnabled()
1313 && !param.isHDRThumbnailProcessNeeded()){
1326 int flipMode = param.getFlipMode(type);
1336 && param.isReprocScaleEnabled()
1337 && param.isUnderReprocScaling()) {
1546 cam_stream_parm_buffer_t param;
1547 memset(¶m, 0, sizeof(cam_stream_parm_buffer_t));
1549 param.type = CAM_STREAM_PARAM_TYPE_DO_REPROCESS;
1550 param.reprocess.buf_index = buf_index;
1551 param.reprocess.frame_idx = frame->frame_idx;
1552 param.reprocess.is_uv_subsampled = frame->is_uv_subsampled;
1561 param.reprocess.is_offline_meta_bypass = 1;
1564 param.reprocess.meta_present = 1;
1565 param.reprocess.meta_buf_index = meta_buf_index;
1569 param.reprocess.frame_idx, param.reprocess.buf_index,
1570 param.reprocess.meta_buf_index, pStream->getMyOriginalType());
1572 rc = pStream->setParameter(param);
1747 cam_stream_parm_buffer_t param;
1748 memset(¶m, 0, sizeof(cam_stream_parm_buffer_t));
1749 param.type = CAM_STREAM_PARAM_TYPE_DO_REPROCESS;
1750 param.reprocess.buf_index = frame->bufs[i]->buf_idx;
1751 param.reprocess.frame_idx = frame->bufs[i]->frame_idx;
1752 param.reprocess.is_uv_subsampled = frame->bufs[i]->is_uv_subsampled;
1755 param.reprocess.meta_present = 1;
1756 param.reprocess.meta_stream_handle = pMetaStream->getMyServerID();
1757 param.reprocess.meta_buf_index = meta_buf_index;
1761 param.reprocess.frame_idx, param.reprocess.buf_index,
1762 param.reprocess.meta_buf_index, pStream->getMyOriginalType());
1764 rc = pStream->setParameter(param);
1810 cam_stream_parm_buffer_t param;
1811 memset(¶m, 0, sizeof(cam_stream_parm_buffer_t));
1812 param.type = CAM_STREAM_PARAM_TYPE_DO_REPROCESS;
1813 param.reprocess.buf_index = buf_idx;
1814 rc = mStreams[i]->setParameter(param);
1816 ret_val = param.reprocess.ret_val;