diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2020-10-03 13:17:35 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2020-10-07 16:07:44 +0200 |
commit | fc1fcb5bc9c21cc497bb978b866885787587aa9f (patch) | |
tree | 18be546d2816b589f17bb0eb1007d2fb5de90dcd /src/android/camera_device.h | |
parent | e3393f147e5d011c6f02447a18eb73b1cf134b4b (diff) |
android: camera_device: Return Camera as shared_ptr
Return the Camera wrapped by the CameraDevice as a shared_ptr.
This will be required to construct the FrameBuffer allocator in
the CameraStream class.
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/android/camera_device.h')
-rw-r--r-- | src/android/camera_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/camera_device.h b/src/android/camera_device.h index 826023b4..777d1a35 100644 --- a/src/android/camera_device.h +++ b/src/android/camera_device.h @@ -49,7 +49,7 @@ public: unsigned int id() const { return id_; } camera3_device_t *camera3Device() { return &camera3Device_; } - const libcamera::Camera *camera() const { return camera_.get(); } + std::shared_ptr<libcamera::Camera> camera() const { return camera_; } libcamera::CameraConfiguration *cameraConfiguration() const { return config_.get(); |