diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-10-27 21:20:10 +0100 |
---|---|---|
committer | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-11-20 17:19:58 +0100 |
commit | 1d32f21136c641318e78b1ba6f075d8865cd51c1 (patch) | |
tree | e331407b27f30e0c954e82fbd7fd1d2e4581931c /src/cam/capture.h | |
parent | bcf42994530a0112ac250a1640562edc16353299 (diff) |
cam: Store camera as shared pointer everywhere
Do not store the camera raw pointer in the capture class, this will
prevent forwarding the shared pointer in the future.
Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/cam/capture.h')
-rw-r--r-- | src/cam/capture.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cam/capture.h b/src/cam/capture.h index 4d396afb..c692d489 100644 --- a/src/cam/capture.h +++ b/src/cam/capture.h @@ -21,7 +21,7 @@ class Capture { public: - Capture(libcamera::Camera *camera, + Capture(std::shared_ptr<libcamera::Camera> camera, libcamera::CameraConfiguration *config); int run(EventLoop *loop, const OptionsParser::Options &options); @@ -30,7 +30,7 @@ private: void requestComplete(libcamera::Request *request); - libcamera::Camera *camera_; + std::shared_ptr<libcamera::Camera> camera_; libcamera::CameraConfiguration *config_; std::map<libcamera::Stream *, std::string> streamName_; |