libcamera/src/libcamera/include/meson.build
Jacopo Mondi 132d99bc8f ipa: Switch to the plain C API
Switch IPA communication to the plain C API. As the IPAInterface class
is easier to use for pipeline handlers than a plain C API, retain it and
add an IPAContextWrapper that translate between the C++ and the C APIs.

On the IPA module side usage of IPAInterface may be desired for IPAs
implemented in C++ that want to link to libcamera. For those IPAs, a new
IPAInterfaceWrapper helper class is introduced to wrap the IPAInterface
implemented internally by the IPA module into an ipa_context,
ipa_context_ops and ipa_callback_ops.

Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2019-11-20 21:48:00 +02:00

30 lines
676 B
Meson

libcamera_headers = files([
'byte_stream_buffer.h',
'camera_controls.h',
'camera_sensor.h',
'control_serializer.h',
'control_validator.h',
'device_enumerator.h',
'device_enumerator_sysfs.h',
'device_enumerator_udev.h',
'event_dispatcher_poll.h',
'formats.h',
'ipa_context_wrapper.h',
'ipa_manager.h',
'ipa_module.h',
'ipa_proxy.h',
'ipc_unixsocket.h',
'log.h',
'media_device.h',
'media_object.h',
'message.h',
'pipeline_handler.h',
'process.h',
'semaphore.h',
'thread.h',
'utils.h',
'v4l2_controls.h',
'v4l2_device.h',
'v4l2_subdevice.h',
'v4l2_videodevice.h',
])