Home | History | Annotate | Download | only in HAL

Lines Matching full:streaminfo

2878  *   @streamInfo  : stream info
2884 cam_stream_info_t *streamInfo)
2891 streamInfo->reprocess_config.pp_feature_config.feature_mask;
2893 switch (streamInfo->stream_type) {
2946 LOGE("allocateStreamInfoBuf: Unable to allocate streamInfo object");
2957 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0);
2958 memset(streamInfo, 0, sizeof(cam_stream_info_t));
2959 streamInfo->stream_type = stream_type;
2960 rc = mParameters.getStreamFormat(stream_type, streamInfo->fmt);
2961 rc = mParameters.getStreamDimension(stream_type, streamInfo->dim);
2962 rc = mParameters.getStreamRotation(stream_type, streamInfo->pp_config, streamInfo->dim);
2963 streamInfo->num_bufs = getBufNumRequired(stream_type);
2964 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
2965 streamInfo->is_secure = NON_SECURE;
2971 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
2973 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
2974 streamInfo->num_of_burst = (uint8_t)
2985 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
2987 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
2988 streamInfo->num_of_burst = mParameters.getNumOfSnapshots();
2991 streamInfo->is_secure = SECURE;
2993 streamInfo->is_secure = NON_SECURE;
2998 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
3000 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
3001 streamInfo->num_of_burst = (uint8_t)(mParameters.getNumOfSnapshots()
3008 streamInfo->dis_enable = mParameters.isDISEnabled();
3011 streamInfo->streaming_mode = CAM_STREAMING_MODE_BATCH;
3012 streamInfo->user_buf_info.frame_buf_cnt = mParameters.getBufBatchCount();
3013 streamInfo->user_buf_info.size =
3017 streamInfo->user_buf_info.frameInterval =
3020 streamInfo->user_buf_info.frame_buf_cnt,
3021 streamInfo->user_buf_info.frameInterval);
3026 streamInfo->is_type = mParameters.getISType();
3028 streamInfo->is_type = IS_TYPE_NONE;
3032 streamInfo->is_secure = SECURE;
3036 streamInfo->noFrameExpected = 1;
3046 mParameters.getStreamPpMask(stream_type, streamInfo->pp_config.feature_mask);
3049 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_FLIP) {
3052 streamInfo->pp_config.flip = (uint32_t)flipMode;
3055 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_SHARPNESS) {
3056 streamInfo->pp_config.sharpness = mParameters.getSharpness();
3058 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_EFFECT) {
3059 streamInfo->pp_config.effect = mParameters.getEffectValue();
3062 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_DENOISE2D) {
3063 streamInfo->pp_config.denoise2d.denoise_enable = 1;
3064 streamInfo->pp_config.denoise2d.process_plates =
3072 streamInfo->pp_config.feature_mask |= CAM_QCOM_FEATURE_CROP;
3075 streamInfo->pp_config.feature_mask |= CAM_QCOM_FEATURE_SCALE;
3079 stream_type, streamInfo->fmt, streamInfo->dim.width,
3080 streamInfo->dim.height, streamInfo->num_bufs,
3081 streamInfo->pp_config.feature_mask);
3092 * @streamInfo : stream info structure
3099 cam_stream_info_t *streamInfo)
3105 if (streamInfo->streaming_mode != CAM_STREAMING_MODE_BATCH) {
3111 switch (streamInfo->stream_type) {
3123 rc = video_mem->allocateMeta(streamInfo->num_bufs,
3163 size = PAD_TO_SIZE((streamInfo->num_bufs * streamInfo->user_buf_info.size),
3166 LOGH("Allocating BATCH Buffer count = %d", streamInfo->num_bufs);