Home
last modified time | relevance | path

Searched refs:capture_result (Results 1 – 6 of 6) sorted by relevance

/aosp12/hardware/google/camera/common/hal/utils/
H A Dhal_utils.cc95 auto capture_result = std::make_unique<CaptureResult>(); in ConvertToCaptureResult() local
96 if (capture_result == nullptr) { in ConvertToCaptureResult()
101 capture_result->frame_number = hwl_result->frame_number; in ConvertToCaptureResult()
102 capture_result->result_metadata = std::move(hwl_result->result_metadata); in ConvertToCaptureResult()
103 capture_result->output_buffers = std::move(hwl_result->output_buffers); in ConvertToCaptureResult()
104 capture_result->input_buffers = std::move(hwl_result->input_buffers); in ConvertToCaptureResult()
105 capture_result->partial_result = hwl_result->partial_result; in ConvertToCaptureResult()
107 capture_result->physical_metadata.reserve( in ConvertToCaptureResult()
110 capture_result->physical_metadata.push_back(PhysicalCameraMetadata( in ConvertToCaptureResult()
114 return capture_result; in ConvertToCaptureResult()
H A Dmulticam_realtime_process_block.cc448 auto capture_result = hal_utils::ConvertToCaptureResult(std::move(hwl_result)); in NotifyHwlPipelineResult() local
449 if (capture_result == nullptr) { in NotifyHwlPipelineResult()
458 capture_result->output_buffers.size(), in NotifyHwlPipelineResult()
459 capture_result->input_buffers.size(), in NotifyHwlPipelineResult()
460 capture_result->result_metadata.get()); in NotifyHwlPipelineResult()
472 .result = std::move(capture_result)}; in NotifyHwlPipelineResult()
H A Dhdrplus_process_block.cc195 auto capture_result = hal_utils::ConvertToCaptureResult(std::move(hwl_result)); in NotifyHwlPipelineResult() local
196 if (capture_result == nullptr) { in NotifyHwlPipelineResult()
201 ProcessBlockResult result = {.result = std::move(capture_result)}; in NotifyHwlPipelineResult()
/aosp12/hardware/google/camera/common/hal/google_camera_hal/
H A Drealtime_process_block.cc195 auto capture_result = hal_utils::ConvertToCaptureResult(std::move(hwl_result)); in NotifyHwlPipelineResult() local
196 if (capture_result == nullptr) { in NotifyHwlPipelineResult()
201 ProcessBlockResult result = {.result = std::move(capture_result)}; in NotifyHwlPipelineResult()
H A Ddepth_process_block.cc324 auto capture_result = std::make_unique<CaptureResult>(); in ProcessDepthResult() local
325 if (capture_result == nullptr) { in ProcessDepthResult()
339 capture_result->frame_number = frame_number; in ProcessDepthResult()
340 capture_result->output_buffers = request.output_buffers; in ProcessDepthResult()
345 for (auto& stream_buffer : capture_result->output_buffers) { in ProcessDepthResult()
352 capture_result->input_buffers = request.input_buffers; in ProcessDepthResult()
358 .result = std::move(capture_result)}; in ProcessDepthResult()
/aosp12/hardware/libhardware/include/hardware/
H A Dtv_input.h229 tv_input_capture_result_t capture_result; member