[{"id":38943,"web_url":"https://patchwork.libcamera.org/comment/38943/","msgid":"<8e547ab9-5649-48e0-b4f6-cab2df95650f@oss.qualcomm.com>","date":"2026-05-21T18:49:49","subject":"Re: [PATCH v5 1/4] libcamera: Create IPA by name","submitter":{"id":242,"url":"https://patchwork.libcamera.org/api/people/242/","name":"Hans de Goede","email":"johannes.goede@oss.qualcomm.com"},"content":"Hi,\n\nOn 12-May-26 19:53, Hans de Goede wrote:\n> Currently createIPA() / IPAManager::module() assume that there is a 1:1\n> relationship between pipeline handlers and IPAs and IPA matching is done\n> based on matching the pipe to ipaModuleInfo.pipelineName[].\n> \n> One way to allow using a single IPA with multiple pipelines would be to\n> allow the IPA to declare itself compatible with more than one pipeline,\n> turning ipaModuleInfo.pipelineName[] into e.g. a vector. But the way\n> ipaModuleInfo is loaded as an ELF symbol requires it to be a simple flat\n> C-struct.\n> \n> Instead, move the IPA creation procedure to be name-based, introducing\n> a PipelineHandler::createIPA(name, minVer, maxVer) overload that allows\n> to specify the name of the IPA module to match. Pipeline handlers that\n> wants to use their name as matching criteria can continue doing so using\n> the already existing PipelineHandler::createIPA(minVer, maxVer) overload.\n> \n> Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>\n> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>\n> Tested-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>\n> Signed-off-by: Hans de Goede <johannes.goede@oss.qualcomm.com>\n\nWhile building a modified deb package with these patches added,\nI learned that this patch breaks building the tests which the deb\nbuild has enabled by default.\n\nTo fix the tests the following change needs to be squashed in:\n\n--- a/test/ipa/ipa_interface_test.cpp\n+++ b/test/ipa/ipa_interface_test.cpp\n@@ -99,7 +99,7 @@ protected:\n \t\tEventDispatcher *dispatcher = thread()->eventDispatcher();\n \t\tTimer timer;\n \n-\t\tipa_ = ipaManager_->createIPA<ipa::vimc::IPAProxyVimc>(pipe_.get(), 0, 0);\n+\t\tipa_ = ipaManager_->createIPA<ipa::vimc::IPAProxyVimc>(pipe_->name(), 0, 0);\n \t\tif (!ipa_) {\n \t\t\tcerr << \"Failed to create VIMC IPA interface\" << endl;\n \t\t\treturn TestFail;\n\nRegards,\n\nHans\n\n\n\n> ---\n> Changes in v5:\n> - Rebase on top of db998e618aaa (\"libcamera: pipeline_handler: Add\n>   createIPA() function\") which moved the createIPA() wrapper for\n>   pipeline-handlers into the PipelineHandler class\n> \n> Changes in v4:\n> - Rebase, change author to Hans' new email address\n> \n> Changes in v1 from Hans' original patch:\n> - Slightly different approach addressing the review comments on Hans' v1\n>   by creating an overload for PipelineHandler::createIPA() that allows\n>   pipelines to specify the IPA module name.\n> ---\n>  include/libcamera/internal/ipa_manager.h      |  6 ++---\n>  include/libcamera/internal/ipa_module.h       |  4 +--\n>  include/libcamera/internal/pipeline_handler.h |  9 ++++++-\n>  src/libcamera/ipa_manager.cpp                 |  8 +++---\n>  src/libcamera/ipa_module.cpp                  | 14 +++++------\n>  src/libcamera/pipeline_handler.cpp            | 25 +++++++++++++++++--\n>  6 files changed, 47 insertions(+), 19 deletions(-)\n> \n> diff --git a/include/libcamera/internal/ipa_manager.h b/include/libcamera/internal/ipa_manager.h\n> index aaa3ca37c..7ab193112 100644\n> --- a/include/libcamera/internal/ipa_manager.h\n> +++ b/include/libcamera/internal/ipa_manager.h\n> @@ -34,10 +34,10 @@ public:\n>  \t~IPAManager();\n>  \n>  \ttemplate<typename T>\n> -\tstd::unique_ptr<T> createIPA(PipelineHandler *pipe, uint32_t minVersion,\n> +\tstd::unique_ptr<T> createIPA(const char *name, uint32_t minVersion,\n>  \t\t\t\t     uint32_t maxVersion)\n>  \t{\n> -\t\tIPAModule *m = module(pipe, minVersion, maxVersion);\n> +\t\tIPAModule *m = module(name, minVersion, maxVersion);\n>  \t\tif (!m)\n>  \t\t\treturn nullptr;\n>  \n> @@ -68,7 +68,7 @@ private:\n>  \t\t      std::vector<std::string> &files);\n>  \tunsigned int addDir(const char *libDir, unsigned int maxDepth = 0);\n>  \n> -\tIPAModule *module(PipelineHandler *pipe, uint32_t minVersion,\n> +\tIPAModule *module(const char *name, uint32_t minVersion,\n>  \t\t\t  uint32_t maxVersion);\n>  \n>  \tbool isSignatureValid(IPAModule *ipa) const;\n> diff --git a/include/libcamera/internal/ipa_module.h b/include/libcamera/internal/ipa_module.h\n> index 15f19492c..a0a53764e 100644\n> --- a/include/libcamera/internal/ipa_module.h\n> +++ b/include/libcamera/internal/ipa_module.h\n> @@ -36,8 +36,8 @@ public:\n>  \n>  \tIPAInterface *createInterface();\n>  \n> -\tbool match(PipelineHandler *pipe,\n> -\t\t   uint32_t minVersion, uint32_t maxVersion) const;\n> +\tbool match(const char *name, uint32_t minVersion,\n> +\t\t   uint32_t maxVersion) const;\n>  \n>  protected:\n>  \tstd::string logPrefix() const override;\n> diff --git a/include/libcamera/internal/pipeline_handler.h b/include/libcamera/internal/pipeline_handler.h\n> index 6922ce18e..b60c07b13 100644\n> --- a/include/libcamera/internal/pipeline_handler.h\n> +++ b/include/libcamera/internal/pipeline_handler.h\n> @@ -76,7 +76,14 @@ public:\n>  \tstd::unique_ptr<T> createIPA(uint32_t minVersion, uint32_t maxVersion)\n>  \t{\n>  \t\tIPAManager *ipaManager = manager_->_d()->ipaManager();\n> -\t\treturn ipaManager->createIPA<T>(this, minVersion, maxVersion);\n> +\t\treturn ipaManager->createIPA<T>(name_, minVersion, maxVersion);\n> +\t}\n> +\n> +\ttemplate<typename T>\n> +\tstd::unique_ptr<T> createIPA(const char *ipaName, uint32_t minVersion, uint32_t maxVersion)\n> +\t{\n> +\t\tIPAManager *ipaManager = manager_->_d()->ipaManager();\n> +\t\treturn ipaManager->createIPA<T>(ipaName, minVersion, maxVersion);\n>  \t}\n>  \n>  protected:\n> diff --git a/src/libcamera/ipa_manager.cpp b/src/libcamera/ipa_manager.cpp\n> index 41918e4c2..b709a024e 100644\n> --- a/src/libcamera/ipa_manager.cpp\n> +++ b/src/libcamera/ipa_manager.cpp\n> @@ -248,15 +248,15 @@ unsigned int IPAManager::addDir(const char *libDir, unsigned int maxDepth)\n>  \n>  /**\n>   * \\brief Retrieve an IPA module that matches a given pipeline handler\n> - * \\param[in] pipe The pipeline handler\n> + * \\param[in] name The IPA module string identifier\n>   * \\param[in] minVersion Minimum acceptable version of IPA module\n>   * \\param[in] maxVersion Maximum acceptable version of IPA module\n>   */\n> -IPAModule *IPAManager::module(PipelineHandler *pipe, uint32_t minVersion,\n> +IPAModule *IPAManager::module(const char *name, uint32_t minVersion,\n>  \t\t\t      uint32_t maxVersion)\n>  {\n>  \tfor (const auto &module : modules_) {\n> -\t\tif (module->match(pipe, minVersion, maxVersion))\n> +\t\tif (module->match(name, minVersion, maxVersion))\n>  \t\t\treturn module.get();\n>  \t}\n>  \n> @@ -266,7 +266,7 @@ IPAModule *IPAManager::module(PipelineHandler *pipe, uint32_t minVersion,\n>  /**\n>   * \\fn IPAManager::createIPA()\n>   * \\brief Create an IPA proxy that matches a given pipeline handler\n> - * \\param[in] pipe The pipeline handler that wants a matching IPA proxy\n> + * \\param[in] name The IPA module name\n>   * \\param[in] minVersion Minimum acceptable version of IPA module\n>   * \\param[in] maxVersion Maximum acceptable version of IPA module\n>   *\n> diff --git a/src/libcamera/ipa_module.cpp b/src/libcamera/ipa_module.cpp\n> index e6ea61e44..c89887954 100644\n> --- a/src/libcamera/ipa_module.cpp\n> +++ b/src/libcamera/ipa_module.cpp\n> @@ -462,22 +462,22 @@ IPAInterface *IPAModule::createInterface()\n>  }\n>  \n>  /**\n> - * \\brief Verify if the IPA module matches a given pipeline handler\n> - * \\param[in] pipe Pipeline handler to match with\n> + * \\brief Verify if the IPA module matches a given name\n> + * \\param[in] name The IPA module name\n>   * \\param[in] minVersion Minimum acceptable version of IPA module\n>   * \\param[in] maxVersion Maximum acceptable version of IPA module\n>   *\n> - * This function checks if this IPA module matches the \\a pipe pipeline handler,\n> + * This function checks if this IPA module matches the requested \\a name\n>   * and the input version range.\n>   *\n> - * \\return True if the pipeline handler matches the IPA module, or false otherwise\n> + * \\return True if the IPA module matches, or false otherwise\n>   */\n> -bool IPAModule::match(PipelineHandler *pipe,\n> -\t\t      uint32_t minVersion, uint32_t maxVersion) const\n> +bool IPAModule::match(const char *name, uint32_t minVersion,\n> +\t\t      uint32_t maxVersion) const\n>  {\n>  \treturn info_.pipelineVersion >= minVersion &&\n>  \t       info_.pipelineVersion <= maxVersion &&\n> -\t       !strcmp(info_.pipelineName, pipe->name());\n> +\t       !strcmp(info_.name, name);\n>  }\n>  \n>  std::string IPAModule::logPrefix() const\n> diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp\n> index e7145c1d4..25fc11989 100644\n> --- a/src/libcamera/pipeline_handler.cpp\n> +++ b/src/libcamera/pipeline_handler.cpp\n> @@ -836,11 +836,32 @@ void PipelineHandler::disconnect()\n>   */\n>  \n>  /**\n> - * \\fn PipelineHandler::createIPA()\n> - * \\brief Create an IPA proxy that matches this pipeline handler\n> + * \\fn PipelineHandler::createIPA(const char *ipaName, uint32_t minVersion, uint32_t maxVersion)\n> + * \\brief Create an IPA proxy that matches the requested name and version\n> + * \\param[in] ipaName The IPA module name\n>   * \\param[in] minVersion Minimum acceptable version of IPA module\n>   * \\param[in] maxVersion Maximum acceptable version of IPA module\n>   *\n> + * Create an IPA module using \\a ipaName as the matching identifier. This\n> + * overload allows pipeline handlers to create an IPA module by specifying its\n> + * name instead of relying on the fact that the IPA module matches the pipeline\n> + * handler's one.\n> + *\n> + * \\return A newly created IPA proxy, or nullptr if no matching IPA module is\n> + * found or if the IPA proxy fails to initialize\n> + */\n> +\n> +/**\n> + * \\fn PipelineHandler::createIPA(uint32_t minVersion, uint32_t maxVersion)\n> + * \\brief Create an IPA proxy that matches the pipeline handler name and the\n> + * requested version\n> + * \\param[in] minVersion Minimum acceptable version of IPA module\n> + * \\param[in] maxVersion Maximum acceptable version of IPA module\n> + *\n> + * Create an IPA module using the pipeline handler name as the matching\n> + * identifier. This overload allows pipeline handler to create an IPA module\n> + * whose name matches the pipeline handler one.\n> + *\n>   * \\return A newly created IPA proxy, or nullptr if no matching IPA module is\n>   * found or if the IPA proxy fails to initialize\n>   */","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 5A3BDBDCBC\n\tfor <parsemail@patchwork.libcamera.org>;\n\tThu, 21 May 2026 18:49:58 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id B422863024;\n\tThu, 21 May 2026 20:49:56 +0200 (CEST)","from mx0b-0031df01.pphosted.com (mx0b-0031df01.pphosted.com\n\t[205.220.180.131])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id E038D62E6A\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 21 May 2026 20:49:54 +0200 (CEST)","from pps.filterd (m0279870.ppops.net [127.0.0.1])\n\tby mx0a-0031df01.pphosted.com (8.18.1.11/8.18.1.11) with ESMTP id\n\t64LGk9pB4155526 for <libcamera-devel@lists.libcamera.org>;\n\tThu, 21 May 2026 18:49:53 GMT","from mail-qt1-f197.google.com (mail-qt1-f197.google.com\n\t[209.85.160.197])\n\tby mx0a-0031df01.pphosted.com (PPS) with ESMTPS id 4e9r96422u-1\n\t(version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NOT)\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 21 May 2026 18:49:53 +0000 (GMT)","by mail-qt1-f197.google.com with SMTP id\n\td75a77b69052e-514b673c8f1so94391591cf.3\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 21 May 2026 11:49:53 -0700 (PDT)","from ?IPV6:2001:1c00:c32:7800:5bfa:a036:83f0:f9ec?\n\t(2001-1c00-0c32-7800-5bfa-a036-83f0-f9ec.cable.dynamic.v6.ziggo.nl.\n\t[2001:1c00:c32:7800:5bfa:a036:83f0:f9ec])\n\tby smtp.gmail.com with ESMTPSA id\n\ta640c23a62f3a-bdc88371cc5sm85350766b.28.2026.05.21.11.49.50\n\t(version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);\n\tThu, 21 May 2026 11:49:50 -0700 (PDT)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (2048-bit key;\n\tunprotected) header.d=qualcomm.com header.i=@qualcomm.com\n\theader.b=\"Ve0KnoMg\"; dkim=pass (2048-bit key;\n\tunprotected) header.d=oss.qualcomm.com header.i=@oss.qualcomm.com\n\theader.b=\"BHzFtamj\"; dkim-atps=neutral","DKIM-Signature":["v=1; a=rsa-sha256; c=relaxed/relaxed; d=qualcomm.com; h=\n\tcc:content-transfer-encoding:content-type:date:from:in-reply-to\n\t:message-id:mime-version:references:subject:to; s=qcppdkim1; bh=\n\tCjo3ikqHpaw6Edp+oKgjFFtlogLuboVkfJm+M+nnuaA=; b=Ve0KnoMgw2yACNbo\n\tRYaIsaFfGlD7LQmjSMSbr+eDIrP1DEAZbm3hu9yV5CslOVR0P8PPtp0CyT/zarq5\n\t7m43t3rCD0oLqln4GzLcp7IQAiIoDNfVLVMHsqoHc8ofTRW504yVKZek1wWanwe6\n\to2rWJ3jYfA7bj+sm7Hf49Bv6ajs3yoP3XgfZgndTJvjyefIENSvYabWY7IXgpbLw\n\tPNdXSRf5mTYLrrlwRzEG4m+2Sz0afcMRoOYNsoD4yRVhtzdz8nC87I7OyAOgdfHe\n\tdbSo5kb+pasOzYXm1vgrTzg7mf2LsjxaZ36s90s3NVakXZ+ATROASfluhwKmDiIO\n\t3zVn0w==","v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=oss.qualcomm.com; s=google; t=1779389392; x=1779994192;\n\tdarn=lists.libcamera.org; \n\th=content-transfer-encoding:in-reply-to:content-language:references\n\t:cc:to:subject:from:user-agent:mime-version:date:message-id:from:to\n\t:cc:subject:date:message-id:reply-to;\n\tbh=Cjo3ikqHpaw6Edp+oKgjFFtlogLuboVkfJm+M+nnuaA=;\n\tb=BHzFtamjzMQNof9XqapQw7ShkYimfrZzK8KWKzaOUN6eoCHrAtGYQhmLRRXGz+AF26\n\tNjzfQ0esHyhVQSBqRxhwnbpyAN2qU4gfkaGADxvT3XRy8DK93j2xasIQPHeJrGuG2U84\n\t4m6Fa+RLYDQp68b+gKLwuhR4fwZPLKkysMgeJ4GJrB6W8AG/CqpKTJOcjPFZ0CAhmb7N\n\t1xLZYCDF8MbFom+p3NrJ+G8c16KFdFQXQIRbT8eIOu09lVblQzUHL9sxuhh8aV40Fy82\n\tu2fXdwzXqzwq3W/XO9p+u3/qMmm47XOQeGJ0n2uxT94OgyMbp9vaANkE28bcDWvukhYR\n\tRJag=="],"X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20251104; t=1779389392; x=1779994192;\n\th=content-transfer-encoding:in-reply-to:content-language:references\n\t:cc:to:subject:from:user-agent:mime-version:date:message-id:x-gm-gg\n\t:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to;\n\tbh=Cjo3ikqHpaw6Edp+oKgjFFtlogLuboVkfJm+M+nnuaA=;\n\tb=C1L43YyUWyrg27DVAJ97e31gO7Tt5bqlzsSyiIlWQfhRwgV+xGtRlBWORa06LITj4r\n\tJJbyDtzXyDyopJQHo7hLTBoequUiZ5SCZdG2JviXbDVqzWF4ZCYbPyLZsDjWyUJijlPa\n\tqjue/2dySXWKB9FR8AVWZ49UJRFZlvjiVqJOC6i0KvBq0SjkzqAWHEXsx4bPU8XSzOTM\n\tjEOfU0pFLCSG3p4sQJX4ubB+rLO7L4lhO3kCcYjKnFd1VChNbXYw8Ug2uhgOI/JaQM0X\n\thYovhwFrDXXaJSpttxAiwgYjN3UrEhZ8ys0xffdK6tf2MUggwBGunsVWEVLI35uHnAhg\n\tvucQ==","X-Gm-Message-State":"AOJu0YxvIwGl9+GlkONbYLW3R0R3Mvf6oYIHmFFF6dI/l7B4Mfif6Op0\n\tuVl2rhztB5SBwKR97NGkz7P9Fg2aJxLvR/oqVld0gl+j8Ghzg++eiOxEJ791/eW1Uk7bZ6+6bfc\n\th91ghU23fFfzmJ6BFwUp7zaY8MOs1BW1hBp7CWEXa1DrMsWKn2CqeYT3y9LcSQaN9E7ymKj/0Bu\n\tcfmMrBYFCX","X-Gm-Gg":"Acq92OFcJMPRSMukQWM5wjDUdI+KDdAKGPmhLk1Fm151lHwTFxrgcvEHT57iRBo5Szv\n\tw9XBs6l9Aa7cW2ALnL/XbgOrnsjAaD1Z4hIb3IcFnQdJ55UdaePUJBY4Csev8ye1HYK0ggusiyo\n\tM6x9Zyo4zP4K4UTiUOsNtqMD/kj3UsC2gN3uPa9ezfkK22IvtO6yl5eSlJIeJK4ZTbl1w8JVpvu\n\tUOl/a4/RiPReN/X2R5hp2kJapR/YDBIMWzcXqNqkCYlBfx0+JSBBob993K8rNLnF34GL0v4aIzV\n\tIBmHey8a0BSrnxPvCB5uejf/PqQp0Rmxgza481EzKmi9LbpcPDbvHDzB3RGNzDUZ1m7xk6y4NtN\n\tP6jNsEd7u0iuLC7M5FnoxhInaM1U2s/sxIK8PcKhu1oNIQBPIeOnZfB5QqE7fe0yAz8AobM6MhC\n\tz0kEuiYgoPKFzMJP9rg1muQdavakPbLT+RXFUYPWjpYT1k4s+AEKNXy9VgDTmdcARqaS2yAYAOh\n\tj8kqSYngf8MDwFd","X-Received":["by 2002:ac8:5d44:0:b0:50f:d5c0:7f38 with SMTP id\n\td75a77b69052e-516d45dae9amr7076541cf.34.1779389392314; \n\tThu, 21 May 2026 11:49:52 -0700 (PDT)","by 2002:ac8:5d44:0:b0:50f:d5c0:7f38 with SMTP id\n\td75a77b69052e-516d45dae9amr7076181cf.34.1779389391822; \n\tThu, 21 May 2026 11:49:51 -0700 (PDT)"],"Message-ID":"<8e547ab9-5649-48e0-b4f6-cab2df95650f@oss.qualcomm.com>","Date":"Thu, 21 May 2026 20:49:49 +0200","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","From":"Hans de Goede <johannes.goede@oss.qualcomm.com>","Subject":"Re: [PATCH v5 1/4] libcamera: Create IPA by name","To":"libcamera-devel@lists.libcamera.org","Cc":"Jacopo Mondi <jacopo.mondi@ideasonboard.com>, Kieran Bingham\n\t<kieran.bingham@ideasonboard.com>, =?utf-8?q?Niklas_S=C3=B6derlund?=\n\t<niklas.soderlund+renesas@ragnatech.se>","References":"<20260512175340.115153-1-johannes.goede@oss.qualcomm.com>\n\t<20260512175340.115153-2-johannes.goede@oss.qualcomm.com>","Content-Language":"en-US, nl","In-Reply-To":"<20260512175340.115153-2-johannes.goede@oss.qualcomm.com>","Content-Type":"text/plain; charset=UTF-8","Content-Transfer-Encoding":"8bit","X-Proofpoint-ORIG-GUID":"yIEC15Nt7O5g2--s8kNmkw5nAPt33V9q","X-Proofpoint-GUID":"yIEC15Nt7O5g2--s8kNmkw5nAPt33V9q","X-Proofpoint-Spam-Details-Enc":"AW1haW4tMjYwNTIxMDE4OSBTYWx0ZWRfX/ZjldWx/KlYz\n\tfEGgMRcaKHaBUB39YGYFXX92EaVdROL4OaEeMmxaFYa9VfvPFXonY2k0qpxnv5eK73byUOx9Zog\n\tlCBfInmjCM7lLdu/5JWfePL7Q5+nOymeQPTqTQdZTPTBepa0EJTRsMXVMcNvuYhYN0urhacrPVN\n\tvFsiM0TUCWL5Ov5dKbcAHU0fVMeN/0WeN2ild+JkvRtPyAjyYQF/W+czeL/T0JFtmF9CiYwocRH\n\tAWazyrpVt7om2qa+o6A6yYYbxaZXpe0Y855yVfF0fJ8SSljVLdUtvIofFqx3YbiXtuzWt5HbnC4\n\tIJdo+hPG73pz8ma5/kxA7VxghwvUI12rrjT61IvY7hbdXjpnnESvxpWtWa0t1GiNvLCcdby5zOG\n\t6yVTMGhToc+fcpueTez/ZVtN35fQKUA3HJjGE/F1inrkbd1haoTBLLP7MvnOaVEX5N8ntrLCI47\n\tt7y7KQy66S36xMvRYsQ==","X-Authority-Analysis":"v=2.4 cv=GqFyPE1C c=1 sm=1 tr=0 ts=6a0f53d1 cx=c_pps\n\ta=EVbN6Ke/fEF3bsl7X48z0g==:117 a=xqWC_Br6kY4A:10 a=IkcTkHD0fZMA:10\n\ta=NGcC8JguVDcA:10 a=s4-Qcg_JpJYA:10 a=VkNPw1HP01LnGYTKEx00:22\n\ta=u7WPNUs3qKkmUXheDGA7:22 a=gowsoOTTUOVcmtlkKump:22 a=P1BnusSwAAAA:8\n\ta=EUspDBNiAAAA:8 a=7rLeF5jNH2lvF48v9ZgA:9 a=3ZKOabzyN94A:10\n\ta=QEXdDO2ut3YA:10\n\ta=a_PwQJl-kcHnX1M80qC6:22 a=D0XLA9XvdZm18NrgonBM:22","X-Proofpoint-Virus-Version":"vendor=baseguard\n\tengine=ICAP:2.0.293, Aquarius:18.0.1143, Hydra:6.1.51,\n\tFMLib:17.12.100.49\n\tdefinitions=2026-05-21_04,2026-05-18_01,2025-10-01_01","X-Proofpoint-Spam-Details":"rule=outbound_notspam policy=outbound score=0\n\tmalwarescore=0 adultscore=0 spamscore=0 priorityscore=1501\n\tlowpriorityscore=0\n\tbulkscore=0 clxscore=1015 impostorscore=0 suspectscore=0 phishscore=0\n\tclassifier=typeunknown authscore=0 authtc= authcc= route=outbound\n\tadjust=0\n\treason=mlx scancount=1 engine=8.22.0-2605130000\n\tdefinitions=main-2605210189","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]