diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-10-21 20:01:19 +0200 |
---|---|---|
committer | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-11-19 18:30:26 +0100 |
commit | f7ddfd451775afd5f7c95771ce2a6b80b703836b (patch) | |
tree | 714afe072f5e5509e35920742813c4b71128983a /include | |
parent | 40888cfdcee71b0f8daab96a0bfdda7302be02ae (diff) |
libcamera: camera: Remove explicit stream to buffer map in requestCompleted signal
The stream to buffer map in the requestCompleted signal is taken
directly from the request which is part of the same signal. Remove the
map as it can be fetched directly from the request.
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>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/camera.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libcamera/camera.h b/include/libcamera/camera.h index 21fac550..ef6a37bb 100644 --- a/include/libcamera/camera.h +++ b/include/libcamera/camera.h @@ -7,7 +7,6 @@ #ifndef __LIBCAMERA_CAMERA_H__ #define __LIBCAMERA_CAMERA_H__ -#include <map> #include <memory> #include <set> #include <stdint.h> @@ -79,7 +78,7 @@ public: const std::string &name() const; Signal<Request *, Buffer *> bufferCompleted; - Signal<Request *, const std::map<Stream *, Buffer *> &> requestCompleted; + Signal<Request *> requestCompleted; Signal<Camera *> disconnected; int acquire(); |