summaryrefslogtreecommitdiff
path: root/common/hal/google_camera_hal/dual_ir_capture_session.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/hal/google_camera_hal/dual_ir_capture_session.h')
-rw-r--r--common/hal/google_camera_hal/dual_ir_capture_session.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/common/hal/google_camera_hal/dual_ir_capture_session.h b/common/hal/google_camera_hal/dual_ir_capture_session.h
index 66236c9..b28820b 100644
--- a/common/hal/google_camera_hal/dual_ir_capture_session.h
+++ b/common/hal/google_camera_hal/dual_ir_capture_session.h
@@ -51,6 +51,8 @@ class DualIrCaptureSession : public CaptureSession {
// lifetime of DualIrCaptureSession.
// stream_config is the stream configuration.
// process_capture_result is the callback function to notify results.
+ // process_batch_capture_result is the callback function to notify batched
+ // results.
// notify is the callback function to notify messages.
// hal_configured_streams will be filled with HAL configured streams.
// camera_allocator_hwl is owned by the caller and must be valid during the
@@ -58,8 +60,9 @@ class DualIrCaptureSession : public CaptureSession {
static std::unique_ptr<CaptureSession> Create(
CameraDeviceSessionHwl* device_session_hwl,
const StreamConfiguration& stream_config,
- ProcessCaptureResultFunc process_capture_result, NotifyFunc notify,
- HwlSessionCallback session_callback,
+ ProcessCaptureResultFunc process_capture_result,
+ ProcessBatchCaptureResultFunc process_batch_capture_result,
+ NotifyFunc notify, HwlSessionCallback session_callback,
std::vector<HalStream>* hal_configured_streams,
CameraBufferAllocatorHwl* camera_allocator_hwl);