diff options
author | Naushir Patuck <naush@raspberrypi.com> | 2023-06-19 15:49:47 +0100 |
---|---|---|
committer | Naushir Patuck <naush@raspberrypi.com> | 2024-06-17 10:44:39 +0100 |
commit | 1e43408495147a3c89544d9d41d3bcd39b28dfa0 (patch) | |
tree | de96ce0d6bab0426644928f4b54f2fc64535e759 /include | |
parent | c5d0015c05a3bfd55ac7cedbd43d958f00cfee49 (diff) |
pipeline: rpi: Add support for Raspberry Pi 5
Add the Raspberry Pi 5 ISP (PiSP) pipeline handler to libcamera. To
include this pipeline handler in the build, set the following meson
option:
meson configure -Dpipelines=rpi/pisp
Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/ipa/meson.build | 1 | ||||
-rw-r--r-- | include/libcamera/meson.build | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/libcamera/ipa/meson.build b/include/libcamera/ipa/meson.build index 3352d08f..8731eccd 100644 --- a/include/libcamera/ipa/meson.build +++ b/include/libcamera/ipa/meson.build @@ -64,6 +64,7 @@ libcamera_generated_ipa_headers += custom_target('core_ipa_serializer_h', pipeline_ipa_mojom_mapping = { 'ipu3': 'ipu3.mojom', 'rkisp1': 'rkisp1.mojom', + 'rpi/pisp': 'raspberrypi.mojom', 'rpi/vc4': 'raspberrypi.mojom', 'simple': 'soft.mojom', 'vimc': 'vimc.mojom', diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build index 84c6c4cb..6334e164 100644 --- a/include/libcamera/meson.build +++ b/include/libcamera/meson.build @@ -36,6 +36,7 @@ controls_map = { 'controls': { 'draft': 'control_ids_draft.yaml', 'core': 'control_ids_core.yaml', + 'rpi/pisp': 'control_ids_rpi.yaml', 'rpi/vc4': 'control_ids_rpi.yaml', }, |