Lines Matching refs:streamInfoBuf
3498 QCameraHeapMemory *streamInfoBuf = new QCameraHeapMemory(QCAMERA_ION_USE_CACHE); in allocateStreamInfoBuf() local
3499 if (!streamInfoBuf) { in allocateStreamInfoBuf()
3508 rc = streamInfoBuf->allocate(bufCount, sizeof(cam_stream_info_t)); in allocateStreamInfoBuf()
3511 delete streamInfoBuf; in allocateStreamInfoBuf()
3516 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(i); in allocateStreamInfoBuf()
3521 delete streamInfoBuf; in allocateStreamInfoBuf()
3526 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0); in allocateStreamInfoBuf()
3528 cam_stream_info_t *s_streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(1); in allocateStreamInfoBuf()
3538 return streamInfoBuf; in allocateStreamInfoBuf()
8705 cam_stream_info_t *streamInfoBuf = (cam_stream_info_t *)pStreamInfo->getPtr(0); in addOfflineReprocChannel() local
8706 memset(streamInfoBuf, 0, sizeof(cam_stream_info_t)); in addOfflineReprocChannel()
8707 streamInfoBuf->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC; in addOfflineReprocChannel()
8708 streamInfoBuf->fmt = img_config.input_fmt; in addOfflineReprocChannel()
8709 streamInfoBuf->dim = img_config.input_dim; in addOfflineReprocChannel()
8710 streamInfoBuf->buf_planes = img_config.input_buf_planes; in addOfflineReprocChannel()
8711 streamInfoBuf->streaming_mode = CAM_STREAMING_MODE_BURST; in addOfflineReprocChannel()
8712 streamInfoBuf->num_of_burst = img_config.num_of_bufs; in addOfflineReprocChannel()
8714 streamInfoBuf->reprocess_config.pp_type = CAM_OFFLINE_REPROCESS_TYPE; in addOfflineReprocChannel()
8715 streamInfoBuf->reprocess_config.offline = img_config; in addOfflineReprocChannel()
8716 streamInfoBuf->reprocess_config.pp_feature_config = pp_feature; in addOfflineReprocChannel()
8717 streamInfoBuf->num_bufs = img_config.num_of_bufs; in addOfflineReprocChannel()