From 23ac77dc4a096b92da7668e9ddfce10b22e73506 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 19 Nov 2018 19:48:39 +0200 Subject: 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 Reviewed-by: Jacopo Mondi --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meson.build') 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, -- cgit v1.2.1