Lines Matching refs:streamInfoBuf
3001 QCameraHeapMemory *streamInfoBuf = new QCameraHeapMemory(QCAMERA_ION_USE_CACHE); in allocateStreamInfoBuf() local
3002 if (!streamInfoBuf) { in allocateStreamInfoBuf()
3007 rc = streamInfoBuf->allocate(1, sizeof(cam_stream_info_t), NON_SECURE); in allocateStreamInfoBuf()
3010 delete streamInfoBuf; in allocateStreamInfoBuf()
3014 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0); in allocateStreamInfoBuf()
3149 return streamInfoBuf; in allocateStreamInfoBuf()
7892 cam_stream_info_t *streamInfoBuf = (cam_stream_info_t *)pStreamInfo->getPtr(0); in addOfflineReprocChannel() local
7893 memset(streamInfoBuf, 0, sizeof(cam_stream_info_t)); in addOfflineReprocChannel()
7894 streamInfoBuf->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC; in addOfflineReprocChannel()
7895 streamInfoBuf->fmt = img_config.input_fmt; in addOfflineReprocChannel()
7896 streamInfoBuf->dim = img_config.input_dim; in addOfflineReprocChannel()
7897 streamInfoBuf->buf_planes = img_config.input_buf_planes; in addOfflineReprocChannel()
7898 streamInfoBuf->streaming_mode = CAM_STREAMING_MODE_BURST; in addOfflineReprocChannel()
7899 streamInfoBuf->num_of_burst = img_config.num_of_bufs; in addOfflineReprocChannel()
7901 streamInfoBuf->reprocess_config.pp_type = CAM_OFFLINE_REPROCESS_TYPE; in addOfflineReprocChannel()
7902 streamInfoBuf->reprocess_config.offline = img_config; in addOfflineReprocChannel()
7903 streamInfoBuf->reprocess_config.pp_feature_config = pp_feature; in addOfflineReprocChannel()