Home | History | Annotate | Download | only in HAL

Lines Matching refs:streamInfoBuf

1903     QCameraHeapMemory *streamInfoBuf = new QCameraHeapMemory(QCAMERA_ION_USE_CACHE);
1904 if (!streamInfoBuf) {
1909 rc = streamInfoBuf->allocate(1, sizeof(cam_stream_info_t), NON_SECURE);
1912 delete streamInfoBuf;
1916 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0);
2043 return streamInfoBuf;
6026 cam_stream_info_t *streamInfoBuf = (cam_stream_info_t *)pStreamInfo->getPtr(0);
6027 memset(streamInfoBuf, 0, sizeof(cam_stream_info_t));
6028 streamInfoBuf->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
6029 streamInfoBuf->fmt = img_config.input_fmt;
6030 streamInfoBuf->dim = img_config.input_dim;
6031 streamInfoBuf->buf_planes = img_config.input_buf_planes;
6032 streamInfoBuf->streaming_mode = CAM_STREAMING_MODE_BURST;
6033 streamInfoBuf->num_of_burst = img_config.num_of_bufs;
6035 streamInfoBuf->reprocess_config.pp_type = CAM_OFFLINE_REPROCESS_TYPE;
6036 streamInfoBuf->reprocess_config.offline = img_config;
6037 streamInfoBuf->reprocess_config.pp_feature_config = pp_feature;