Files
external_libcamera/src/ipa/libipa/meson.build
T
Umang Jain b612496fc4 ipa: libipa: Introduce FrameContextQueue
Introduce a common implementation in libipa to represent the queue of
frame contexts.

Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2022-09-28 05:41:01 +03:00

24 lines
536 B
Meson

# SPDX-License-Identifier: CC0-1.0
libipa_headers = files([
'algorithm.h',
'camera_sensor_helper.h',
'fc_queue.h',
'histogram.h',
'module.h',
])
libipa_sources = files([
'algorithm.cpp',
'camera_sensor_helper.cpp',
'fc_queue.cpp',
'histogram.cpp',
'module.cpp',
])
libipa_includes = include_directories('..')
libipa = static_library('ipa', [libipa_sources, libipa_headers],
include_directories : ipa_includes,
dependencies : libcamera_private)