diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-09-06 00:32:19 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-09-07 19:18:40 +0300 |
commit | 8926fe6d74a272b4a3e83f12a2fb244a53305906 (patch) | |
tree | fe72786440796561755a41cbb696910183804cc9 /src/cam/meson.build | |
parent | 894ca69f60435e3402de5786682d621362979171 (diff) |
cam: Add Image class
The new Image class represents a multi-planar image with direct access
to pixel data. It currently duplicates the function of the
MappedFrameBuffer class which is internal to libcamera, and will serve
as a design playground to improve the API until it is considered ready
to be made part of the libcamera public API.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/cam/meson.build')
-rw-r--r-- | src/cam/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cam/meson.build b/src/cam/meson.build index ea36aaa5..e8e2ae57 100644 --- a/src/cam/meson.build +++ b/src/cam/meson.build @@ -14,6 +14,7 @@ cam_sources = files([ 'event_loop.cpp', 'file_sink.cpp', 'frame_sink.cpp', + 'image.cpp', 'main.cpp', 'options.cpp', 'stream_options.cpp', |