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>
16 lines
444 B
Meson
16 lines
444 B
Meson
project('libcamera - supporting complex camera pipelines', 'c', 'cpp',
|
|
version : '0.1',
|
|
license : 'LGPL 2.1+')
|
|
|
|
inc = include_directories('include')
|
|
|
|
subdir('lib')
|
|
subdir('test')
|
|
subdir('utils')
|
|
|
|
pkg_mod = import('pkgconfig')
|
|
pkg_mod.generate(libraries : libcamera,
|
|
version : '1.0',
|
|
name : 'libcamera',
|
|
filebase : 'camera',
|
|
description : 'Complex Camera Support Library')
|