b612496fc4
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>
24 lines
536 B
Meson
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)
|