Home | History | Annotate | Download | only in HAL

Lines Matching defs:streamInfoBuf

1441     QCameraHeapMemory *streamInfoBuf = new QCameraHeapMemory(QCAMERA_ION_USE_CACHE);
1442 if (!streamInfoBuf) {
1447 rc = streamInfoBuf->allocate(1, sizeof(cam_stream_info_t));
1450 delete streamInfoBuf;
1454 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0);
1487 return streamInfoBuf;
3280 cam_stream_info_t *streamInfoBuf = (cam_stream_info_t *)pStreamInfo->getPtr(0);
3281 memset(streamInfoBuf, 0, sizeof(cam_stream_info_t));
3282 streamInfoBuf->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
3283 streamInfoBuf->fmt = img_config.input_fmt;
3284 streamInfoBuf->dim = img_config.input_dim;
3285 streamInfoBuf->buf_planes = img_config.input_buf_planes;
3286 streamInfoBuf->streaming_mode = CAM_STREAMING_MODE_BURST;
3287 streamInfoBuf->num_of_burst = img_config.num_of_bufs;
3289 streamInfoBuf->reprocess_config.pp_type = CAM_OFFLINE_REPROCESS_TYPE;
3290 streamInfoBuf->reprocess_config.offline = img_config;
3291 streamInfoBuf->reprocess_config.pp_feature_config = pp_feature;