mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-25 01:25:08 +03:00
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>
30 lines
676 B
Meson
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',
|
|
])
|