diff options
author | Hirokazu Honda <hiroh@chromium.org> | 2021-06-15 17:00:28 +0900 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-06-28 07:51:36 +0300 |
commit | b8732a80fea43fede84480c95903002d7feff975 (patch) | |
tree | d6dee88e6f58e060174fe901daccbfc3014f0e6d /src/android/camera_device.h | |
parent | 4510638e5daf470a173596ce3f33a9e3b236f842 (diff) |
android: camera_device: Check if a request is configured on processCaptureRequest()
Add a check on processCaptureRequest() if a given capture
request contains a camera stream that has been configured.
Signed-off-by: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/android/camera_device.h')
-rw-r--r-- | src/android/camera_device.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/android/camera_device.h b/src/android/camera_device.h index 4747f577..18cf5118 100644 --- a/src/android/camera_device.h +++ b/src/android/camera_device.h @@ -96,6 +96,7 @@ private: libcamera::FrameBuffer *createFrameBuffer(const buffer_handle_t camera3buffer); void abortRequest(camera3_capture_request_t *request); + bool isValidRequest(camera3_capture_request_t *request) const; void notifyShutter(uint32_t frameNumber, uint64_t timestamp); void notifyError(uint32_t frameNumber, camera3_stream_t *stream, camera3_error_msg_code code); |