Lines Matching full:streaminfo
887 cam_stream_info_t *streamInfo = NULL;
966 streamInfo = (cam_stream_info_t *)pStreamInfoBuf->getPtr(0);
967 memset(streamInfo, 0, sizeof(cam_stream_info_t));
968 streamInfo->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
971 streamInfo->perf_mode = CAM_PERF_HIGH_PERFORMANCE;
973 streamInfo->fmt = CAM_FORMAT_YUV_420_NV21;
975 rc = pStream->getFormat(streamInfo->fmt);
977 rc = pStream->getFrameDimension(streamInfo->dim);
979 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
980 streamInfo->num_of_burst = 0;
982 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
983 streamInfo->num_of_burst = burstNum;
1005 param.getStreamRotation(streamInfo->stream_type,
1006 streamInfo->pp_config, streamInfo->dim);
1007 streamInfo->reprocess_config = rp_cfg;
1008 streamInfo->reprocess_config.pp_feature_config = featureConfig;
1012 streamInfo->reprocess_config.pp_feature_config.feature_mask &= ~CAM_QCOM_FEATURE_CAC;
1014 streamInfo->reprocess_config.pp_feature_config.feature_mask &= ~CAM_QCOM_FEATURE_DENOISE2D;
1018 streamInfo->reprocess_config.pp_feature_config.feature_mask
1024 if (streamInfo->reprocess_config.online.input_stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
1027 param.getFlipMode(streamInfo->reprocess_config.online.input_stream_type);
1029 streamInfo->reprocess_config.pp_feature_config.feature_mask |=
1031 streamInfo->reprocess_config.pp_feature_config.flip = (uint32_t)flipMode;
1035 if (streamInfo->reprocess_config.offline.input_type == CAM_STREAM_TYPE_SNAPSHOT) {
1037 param.getFlipMode(streamInfo->reprocess_config.offline.input_type);
1039 streamInfo->reprocess_config.pp_feature_config.feature_mask |=
1041 streamInfo->reprocess_config.pp_feature_config.flip = (uint32_t)flipMode;
1045 if ((streamInfo->reprocess_config.pp_feature_config.feature_mask
1051 streamInfo->dim.width =
1052 streamInfo->reprocess_config.pp_feature_config.scale_param.output_width;
1053 streamInfo->dim.height =
1054 streamInfo->reprocess_config.pp_feature_config.scale_param.output_height;
1057 __func__, streamInfo->dim.width, streamInfo->dim.height);
1063 pMiscBuf = allocator.allocateMiscBuf(streamInfo);
1068 streamInfo->reprocess_config.pp_feature_config.rotation);