Home | History | Annotate | Download | only in HAL

Lines Matching refs:streamInfoBuf

2944     QCameraHeapMemory *streamInfoBuf = new QCameraHeapMemory(QCAMERA_ION_USE_CACHE);
2945 if (!streamInfoBuf) {
2950 rc = streamInfoBuf->allocate(1, sizeof(cam_stream_info_t), NON_SECURE);
2953 delete streamInfoBuf;
2957 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0);
3083 return streamInfoBuf;
7762 cam_stream_info_t *streamInfoBuf = (cam_stream_info_t *)pStreamInfo->getPtr(0);
7763 memset(streamInfoBuf, 0, sizeof(cam_stream_info_t));
7764 streamInfoBuf->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
7765 streamInfoBuf->fmt = img_config.input_fmt;
7766 streamInfoBuf->dim = img_config.input_dim;
7767 streamInfoBuf->buf_planes = img_config.input_buf_planes;
7768 streamInfoBuf->streaming_mode = CAM_STREAMING_MODE_BURST;
7769 streamInfoBuf->num_of_burst = img_config.num_of_bufs;
7771 streamInfoBuf->reprocess_config.pp_type = CAM_OFFLINE_REPROCESS_TYPE;
7772 streamInfoBuf->reprocess_config.offline = img_config;
7773 streamInfoBuf->reprocess_config.pp_feature_config = pp_feature;