diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-11-19 19:48:39 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-11-20 03:06:41 +0200 |
commit | 23ac77dc4a096b92da7668e9ddfce10b22e73506 (patch) | |
tree | 8dd92a48cdf61f996e171febaf3e6a1c44192a71 /meson.build | |
parent | 708d3c9fc07e8b27770e365696d8867599b3ae93 (diff) |
utils: ipu3: Add IPU3 raw capture unpack utility
The IPU3 captures Bayer data in a 25-pixels-in-32-bytes packed format,
which no standard tool can process. Add a quick implementation of data
unpacking to turn raw binary files into 16 bits per pixel unpacked Bayer
data.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index d1e186ad..4b3d528c 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libcamera - supporting complex camera pipelines', 'cpp', +project('libcamera - supporting complex camera pipelines', 'c', 'cpp', version : '0.1', license : 'LGPL 2.1+') @@ -6,6 +6,7 @@ inc = include_directories('include') subdir('lib') subdir('test') +subdir('utils') pkg_mod = import('pkgconfig') pkg_mod.generate(libraries : libcamera, |