Lines Matching full:streaminfo
793 cam_stream_info_t *streamInfo = NULL;
851 streamInfo = (cam_stream_info_t *)pStreamInfoBuf->getPtr(0);
852 memset(streamInfo, 0, sizeof(cam_stream_info_t));
853 streamInfo->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
854 rc = pStream->getFormat(streamInfo->fmt);
855 rc = pStream->getFrameDimension(streamInfo->dim);
857 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
858 streamInfo->num_of_burst = 0;
860 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
861 streamInfo->num_of_burst = burstNum;
883 streamInfo->reprocess_config = rp_cfg;
884 streamInfo->reprocess_config.pp_feature_config = config;
888 streamInfo->reprocess_config.pp_feature_config.feature_mask &= ~CAM_QCOM_FEATURE_CAC;
890 streamInfo->reprocess_config.pp_feature_config.feature_mask &= ~CAM_QCOM_FEATURE_DENOISE2D;
894 streamInfo->reprocess_config.pp_feature_config.feature_mask
899 if (streamInfo->reprocess_config.pp_feature_config.feature_mask & CAM_QCOM_FEATURE_ROTATION) {
900 if (streamInfo->reprocess_config.pp_feature_config.rotation == ROTATE_90 ||
901 streamInfo->reprocess_config.pp_feature_config.rotation == ROTATE_270) {
903 int32_t temp = streamInfo->dim.height;
904 streamInfo->dim.height = streamInfo->dim.width;
905 streamInfo->dim.width = temp;
910 (streamInfo->reprocess_config.online.input_stream_type == CAM_STREAM_TYPE_SNAPSHOT)) {
913 param.getFlipMode(streamInfo->reprocess_config.online.input_stream_type);
915 streamInfo
916 streamInfo->reprocess_config.pp_feature_config.flip = flipMode;
920 if(streamInfo->reprocess_config.pp_feature_config.feature_mask & CAM_QCOM_FEATURE_SCALE){
924 if((streamInfo->reprocess_config.pp_feature_config.feature_mask & CAM_QCOM_FEATURE_ROTATION) &&
925 (streamInfo->reprocess_config.pp_feature_config.rotation == ROTATE_90 ||
926 streamInfo->reprocess_config.pp_feature_config.rotation == ROTATE_270)){
928 streamInfo->dim.width = streamInfo->reprocess_config.pp_feature_config.scale_param.output_height;
929 streamInfo->dim.height = streamInfo->reprocess_config.pp_feature_config.scale_param.output_width;
931 streamInfo->dim.width = streamInfo->reprocess_config.pp_feature_config.scale_param.output_width;
932 streamInfo->dim.height = streamInfo->reprocess_config.pp_feature_config.scale_param.output_height;
935 CDBG_HIGH("%s: stream width=%d, height=%d.", __func__, streamInfo->dim.width, streamInfo->dim.height);