diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-02-05 12:47:59 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-02-06 07:41:51 +0200 |
commit | 98edf29e012cce6a3c0a428e3d78490780c1a824 (patch) | |
tree | 9e6f850bde8b19cfd3611076e983fe6d9968525d /include | |
parent | 31bb25ae8d6dc669dddabf47d18c517ce9070578 (diff) |
libcamera: camera: Cache the stream configuration in the stream object
The API towards the application and pipeline handler can be simplified
if the camera caches which streams have been selected and their
respective configuration.
Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/camera.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libcamera/camera.h b/include/libcamera/camera.h index 36bf1cbb..1c0ee07c 100644 --- a/include/libcamera/camera.h +++ b/include/libcamera/camera.h @@ -55,6 +55,7 @@ private: std::shared_ptr<PipelineHandler> pipe_; std::string name_; std::vector<Stream *> streams_; + std::vector<Stream *> activeStreams_; bool acquired_; bool disconnected_; |