Home | History | Annotate | Download | only in HAL

Lines Matching defs:streamInfo

625     cam_stream_info_t *streamInfo = NULL;
645 streamInfo = (cam_stream_info_t *)pStreamInfoBuf->getPtr(0);
646 memset(streamInfo, 0, sizeof(cam_stream_info_t));
647 streamInfo->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
648 rc = pStream->getFormat(streamInfo->fmt);
649 rc = pStream->getFrameDimension(streamInfo->dim);
650 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
651 streamInfo->num_of_burst = minStreamBufNum;
653 streamInfo->reprocess_config.pp_type = CAM_ONLINE_REPROCESS_TYPE;
654 streamInfo->reprocess_config.online.input_stream_id = pStream->getMyServerID();
655 streamInfo->reprocess_config.online.input_stream_type = pStream->getMyType();
656 streamInfo->reprocess_config.pp_feature_config = config;
662 streamInfo->reprocess_config.pp_feature_config.feature_mask &= ~CAM_QCOM_FEATURE_CAC;
664 if (streamInfo->reprocess_config.pp_feature_config.feature_mask & CAM_QCOM_FEATURE_ROTATION) {
665 if (streamInfo->reprocess_config.pp_feature_config.rotation == ROTATE_90 ||
666 streamInfo->reprocess_config.pp_feature_config.rotation == ROTATE_270) {
668 int32_t temp = streamInfo->dim.height;
669 streamInfo->dim.height = streamInfo->dim.width;
670 streamInfo->dim.width = temp;