Home | History | Annotate | Download | only in HAL

Lines Matching defs:streamInfoBuf

1767     QCameraHeapMemory *streamInfoBuf = new QCameraHeapMemory(QCAMERA_ION_USE_CACHE);
1768 if (!streamInfoBuf) {
1773 rc = streamInfoBuf->allocate(1, sizeof(cam_stream_info_t), NON_SECURE);
1776 delete streamInfoBuf;
1780 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0);
1885 return streamInfoBuf;
4745 cam_stream_info_t *streamInfoBuf = (cam_stream_info_t *)pStreamInfo->getPtr(0);
4746 memset(streamInfoBuf, 0, sizeof(cam_stream_info_t));
4747 streamInfoBuf->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
4748 streamInfoBuf->fmt = img_config.input_fmt;
4749 streamInfoBuf->dim = img_config.input_dim;
4750 streamInfoBuf->buf_planes = img_config.input_buf_planes;
4751 streamInfoBuf->streaming_mode = CAM_STREAMING_MODE_BURST;
4752 streamInfoBuf->num_of_burst = img_config.num_of_bufs;
4754 streamInfoBuf->reprocess_config.pp_type = CAM_OFFLINE_REPROCESS_TYPE;
4755 streamInfoBuf->reprocess_config.offline = img_config;
4756 streamInfoBuf->reprocess_config.pp_feature_config = pp_feature;