diff options
author | Hirokazu Honda <hiroh@chromium.org> | 2021-08-26 20:25:32 +0900 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-08-30 18:08:02 +0300 |
commit | 8708904fad6f4ff94a30e2b3b537012b7c637c4d (patch) | |
tree | 0fd8f848eeb168ca9054494319d04bd04f74a7ad /include | |
parent | 86a47fdcd97350bd979a4d6b00124330a3b02441 (diff) |
libcamera: mapped_framebuffer: Return plane begin address by MappedBuffer::maps()
MappedBuffer::maps() returns std::vector<MappedBuffer::Plane>.
Plane has the address, but the address points the beginning of the
buffer containing the plane.
This makes the Plane point the beginning of the plane. So
MappedBuffer::maps()[i].data() returns the address of i-th plane.
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 'include')
-rw-r--r-- | include/libcamera/internal/mapped_framebuffer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libcamera/internal/mapped_framebuffer.h b/include/libcamera/internal/mapped_framebuffer.h index 3401a9fc..42479541 100644 --- a/include/libcamera/internal/mapped_framebuffer.h +++ b/include/libcamera/internal/mapped_framebuffer.h @@ -30,12 +30,14 @@ public: bool isValid() const { return error_ == 0; } int error() const { return error_; } - const std::vector<Plane> &maps() const { return maps_; } + /* \todo rename to planes(). */ + const std::vector<Plane> &maps() const { return planes_; } protected: MappedBuffer(); int error_; + std::vector<Plane> planes_; std::vector<Plane> maps_; private: |