diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-07-31 00:55:45 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-07-31 12:26:21 +0300 |
commit | 98b01768397f982bd177b55e9bc67002b645b4d0 (patch) | |
tree | 3912522ccecea665bd8a4cd97561be43caaa4527 | |
parent | 7f33dfc100b2da0f158494534138a2d8b4f95100 (diff) |
meson: Enable simple pipeline handler on all platforms by default
The simple pipeline handler is enabled by default on arm platforms only,
as it used to support arm SoCs only. Now that support for the IPU6 has
been added to the pipeline handler, it should be enabled on x86
platforms as well. Fix it.
Fixes: 06e0d8508e5c ("libcamera: pipeline: simple: Enable intel-ipu6 with Soft ISP")
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index f946eba9..316abdb8 100644 --- a/meson.build +++ b/meson.build @@ -219,7 +219,7 @@ pipelines_support = { 'mali-c55': arch_arm, 'rkisp1': arch_arm, 'rpi/vc4': arch_arm, - 'simple': arch_arm, + 'simple': ['any'], 'uvcvideo': ['any'], 'vimc': ['test'], } |