[{"id":12840,"web_url":"https://patchwork.libcamera.org/comment/12840/","msgid":"<20200928232023.GA14614@pendragon.ideasonboard.com>","date":"2020-09-28T23:20:23","subject":"Re: [libcamera-devel] [PATCH 1/3] libcamera: ipu3: Fix RAW+YUV\n\tcapture","submitter":{"id":2,"url":"https://patchwork.libcamera.org/api/people/2/","name":"Laurent Pinchart","email":"laurent.pinchart@ideasonboard.com"},"content":"Hi Jacopo,\n\nThank you for the patch.\n\nOn Thu, Sep 24, 2020 at 04:51:41PM +0200, Jacopo Mondi wrote:\n> When requesting one RAW stream and one YUV stream the\n> StreamConfiguration assigned to the RAW stream is the first one\n> added to the CameraConfiguration, while the YUV stream gets assigned to\n> the main output.\n> \n> At configure() time the viewfinder output needs to be configured with\n> the same format as the main output, but since the introduction of RAW\n> capture support, the pipeline has not been updated and still assumes\n> the main output configuration is the first one in the\n> CameraConfiguration. This causes the viewfinder to be configured\n> with the same format as the raw stream, breaking capture operations.\n\nOops... You mentioned no CTS regression, is there also no CTS tests\nfixed by this ?\n\n> Before this commit the following command fails and the ImgU does not\n> produce frames:\n> cam -srole=stillraw -srole=viewfinder -c2 -C\n> \n> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>\n> ---\n>  src/libcamera/pipeline/ipu3/ipu3.cpp | 20 +++++++++-----------\n>  1 file changed, 9 insertions(+), 11 deletions(-)\n> \n> diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> index 221259c7fe61..9cea6c7e9611 100644\n> --- a/src/libcamera/pipeline/ipu3/ipu3.cpp\n> +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> @@ -476,25 +476,23 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n>  \t\treturn ret;\n>  \n>  \t/* Apply the format to the configured streams output devices. */\n> -\tbool outActive = false;\n> -\tbool vfActive = false;\n> +\tStreamConfiguration *mainCfg = nullptr;\n> +\tStreamConfiguration *vfCfg = nullptr;\n>  \n>  \tfor (unsigned int i = 0; i < config->size(); ++i) {\n>  \t\tStreamConfiguration &cfg = (*config)[i];\n>  \t\tStream *stream = cfg.stream();\n>  \n>  \t\tif (stream == outStream) {\n> +\t\t\tmainCfg = &cfg;\n>  \t\t\tret = imgu->configureOutput(cfg, &outputFormat);\n>  \t\t\tif (ret)\n>  \t\t\t\treturn ret;\n> -\n> -\t\t\toutActive = true;\n>  \t\t} else if (stream == vfStream) {\n> +\t\t\tvfCfg = &cfg;\n>  \t\t\tret = imgu->configureViewfinder(cfg, &outputFormat);\n>  \t\t\tif (ret)\n>  \t\t\t\treturn ret;\n> -\n> -\t\t\tvfActive = true;\n>  \t\t}\n>  \t}\n>  \n> @@ -503,14 +501,14 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n>  \t * the configuration of the active one for that purpose (there should\n>  \t * be at least one active stream in the configuration request).\n>  \t */\n> -\tif (!outActive) {\n> -\t\tret = imgu->configureOutput(config->at(0), &outputFormat);\n> +\tif (!mainCfg) {\n> +\t\tret = imgu->configureOutput(*vfCfg, &outputFormat);\n\nWhat if the only stream requested is the raw stream ? Won't both mainCfg\nand vfCfg be null ?\n\n>  \t\tif (ret)\n>  \t\t\treturn ret;\n>  \t}\n>  \n> -\tif (!vfActive) {\n> -\t\tret = imgu->configureViewfinder(config->at(0), &outputFormat);\n> +\tif (!vfCfg) {\n> +\t\tret = imgu->configureViewfinder(*mainCfg, &outputFormat);\n>  \t\tif (ret)\n>  \t\t\treturn ret;\n>  \t}\n> @@ -529,7 +527,7 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n>  \t/* Apply the \"pipe_mode\" control to the ImgU subdevice. */\n>  \tControlList ctrls(imgu->imgu_->controls());\n>  \tctrls.set(V4L2_CID_IPU3_PIPE_MODE,\n> -\t\t  static_cast<int32_t>(vfActive ? IPU3PipeModeVideo :\n> +\t\t  static_cast<int32_t>(vfCfg ? IPU3PipeModeVideo :\n>  \t\t\t\t       IPU3PipeModeStillCapture));\n>  \tret = imgu->imgu_->setControls(&ctrls);\n>  \tif (ret) {","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 6F548C3B5C\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon, 28 Sep 2020 23:21:03 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 0714F60BF7;\n\tTue, 29 Sep 2020 01:21:03 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 9641E60394\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 29 Sep 2020 01:21:01 +0200 (CEST)","from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi\n\t[62.78.145.57])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id D5BC4A58;\n\tTue, 29 Sep 2020 01:20:57 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com;\n\tdkim=fail reason=\"signature verification failed\" (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"b3acj5NX\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1601335258;\n\tbh=mT1d3UjSUJOUHNYPlfGLQ886WJOqhwls4txkuQy5+RA=;\n\th=Date:From:To:Cc:Subject:References:In-Reply-To:From;\n\tb=b3acj5NXs6LOMKrI3moSNNwQqvdvXSCQ81MCpRefzxXg5CReBuYp1h8DWfauaY64C\n\tAk6Ip+DOFZOtov11L6+lW/WB/sEdoZK4OPN4LtySyOhUkwofKvSScXvf/Vmmq0Y6mB\n\t9NbkuVsL7xygVHBqiynXnWue27jT8PoE0othfgKU=","Date":"Tue, 29 Sep 2020 02:20:23 +0300","From":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","To":"Jacopo Mondi <jacopo@jmondi.org>","Message-ID":"<20200928232023.GA14614@pendragon.ideasonboard.com>","References":"<20200924145143.117733-1-jacopo@jmondi.org>\n\t<20200924145143.117733-2-jacopo@jmondi.org>","MIME-Version":"1.0","Content-Disposition":"inline","In-Reply-To":"<20200924145143.117733-2-jacopo@jmondi.org>","Subject":"Re: [libcamera-devel] [PATCH 1/3] libcamera: ipu3: Fix RAW+YUV\n\tcapture","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>","Cc":"libcamera-devel@lists.libcamera.org","Content-Type":"text/plain; charset=\"us-ascii\"","Content-Transfer-Encoding":"7bit","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}},{"id":12842,"web_url":"https://patchwork.libcamera.org/comment/12842/","msgid":"<20200928232211.GC14614@pendragon.ideasonboard.com>","date":"2020-09-28T23:22:11","subject":"Re: [libcamera-devel] [PATCH 1/3] libcamera: ipu3: Fix RAW+YUV\n\tcapture","submitter":{"id":2,"url":"https://patchwork.libcamera.org/api/people/2/","name":"Laurent Pinchart","email":"laurent.pinchart@ideasonboard.com"},"content":"On Tue, Sep 29, 2020 at 02:20:27AM +0300, Laurent Pinchart wrote:\n> Hi Jacopo,\n> \n> Thank you for the patch.\n> \n> On Thu, Sep 24, 2020 at 04:51:41PM +0200, Jacopo Mondi wrote:\n> > When requesting one RAW stream and one YUV stream the\n> > StreamConfiguration assigned to the RAW stream is the first one\n> > added to the CameraConfiguration, while the YUV stream gets assigned to\n> > the main output.\n> > \n> > At configure() time the viewfinder output needs to be configured with\n> > the same format as the main output, but since the introduction of RAW\n> > capture support, the pipeline has not been updated and still assumes\n> > the main output configuration is the first one in the\n> > CameraConfiguration. This causes the viewfinder to be configured\n> > with the same format as the raw stream, breaking capture operations.\n> \n> Oops... You mentioned no CTS regression, is there also no CTS tests\n> fixed by this ?\n> \n> > Before this commit the following command fails and the ImgU does not\n> > produce frames:\n> > cam -srole=stillraw -srole=viewfinder -c2 -C\n> > \n> > Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>\n> > ---\n> >  src/libcamera/pipeline/ipu3/ipu3.cpp | 20 +++++++++-----------\n> >  1 file changed, 9 insertions(+), 11 deletions(-)\n> > \n> > diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> > index 221259c7fe61..9cea6c7e9611 100644\n> > --- a/src/libcamera/pipeline/ipu3/ipu3.cpp\n> > +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> > @@ -476,25 +476,23 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n> >  \t\treturn ret;\n> >  \n> >  \t/* Apply the format to the configured streams output devices. */\n> > -\tbool outActive = false;\n> > -\tbool vfActive = false;\n> > +\tStreamConfiguration *mainCfg = nullptr;\n> > +\tStreamConfiguration *vfCfg = nullptr;\n> >  \n> >  \tfor (unsigned int i = 0; i < config->size(); ++i) {\n> >  \t\tStreamConfiguration &cfg = (*config)[i];\n> >  \t\tStream *stream = cfg.stream();\n> >  \n> >  \t\tif (stream == outStream) {\n> > +\t\t\tmainCfg = &cfg;\n> >  \t\t\tret = imgu->configureOutput(cfg, &outputFormat);\n> >  \t\t\tif (ret)\n> >  \t\t\t\treturn ret;\n> > -\n> > -\t\t\toutActive = true;\n> >  \t\t} else if (stream == vfStream) {\n> > +\t\t\tvfCfg = &cfg;\n> >  \t\t\tret = imgu->configureViewfinder(cfg, &outputFormat);\n> >  \t\t\tif (ret)\n> >  \t\t\t\treturn ret;\n> > -\n> > -\t\t\tvfActive = true;\n> >  \t\t}\n> >  \t}\n> >  \n> > @@ -503,14 +501,14 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n> >  \t * the configuration of the active one for that purpose (there should\n> >  \t * be at least one active stream in the configuration request).\n> >  \t */\n> > -\tif (!outActive) {\n> > -\t\tret = imgu->configureOutput(config->at(0), &outputFormat);\n> > +\tif (!mainCfg) {\n> > +\t\tret = imgu->configureOutput(*vfCfg, &outputFormat);\n> \n> What if the only stream requested is the raw stream ? Won't both mainCfg\n> and vfCfg be null ?\n\nScratch this, there's a check above the returns early if only a raw\nstream is requested.\n\nReviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n\n\n> >  \t\tif (ret)\n> >  \t\t\treturn ret;\n> >  \t}\n> >  \n> > -\tif (!vfActive) {\n> > -\t\tret = imgu->configureViewfinder(config->at(0), &outputFormat);\n> > +\tif (!vfCfg) {\n> > +\t\tret = imgu->configureViewfinder(*mainCfg, &outputFormat);\n> >  \t\tif (ret)\n> >  \t\t\treturn ret;\n> >  \t}\n> > @@ -529,7 +527,7 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n> >  \t/* Apply the \"pipe_mode\" control to the ImgU subdevice. */\n> >  \tControlList ctrls(imgu->imgu_->controls());\n> >  \tctrls.set(V4L2_CID_IPU3_PIPE_MODE,\n> > -\t\t  static_cast<int32_t>(vfActive ? IPU3PipeModeVideo :\n> > +\t\t  static_cast<int32_t>(vfCfg ? IPU3PipeModeVideo :\n> >  \t\t\t\t       IPU3PipeModeStillCapture));\n> >  \tret = imgu->imgu_->setControls(&ctrls);\n> >  \tif (ret) {","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 1A0FAC3B5C\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon, 28 Sep 2020 23:22:49 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id DC0FD60BF7;\n\tTue, 29 Sep 2020 01:22:48 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 3101160394\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 29 Sep 2020 01:22:48 +0200 (CEST)","from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi\n\t[62.78.145.57])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 9616CA58;\n\tTue, 29 Sep 2020 01:22:46 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com;\n\tdkim=fail reason=\"signature verification failed\" (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"cqzJa52g\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1601335367;\n\tbh=HVMvViNXV1oT64wTAemDrW+2PvaYdVp/l28zv6Ax1cs=;\n\th=Date:From:To:Cc:Subject:References:In-Reply-To:From;\n\tb=cqzJa52glaVYc0PXtAVw3KCD7r2gFD2Hghy6g0HMCCBGZ8VWmOSeMGO0is/HaWryg\n\t5OkV7euflMRn2tOTRhqlDJmNczJJehW98B1RrGMMhVrGQ4oiczRhfE6F4Pq6kUXdGm\n\tZ9L8Thf6FIGLtlQdYx+fq1Cc25wf88jTNKlQY8AQ=","Date":"Tue, 29 Sep 2020 02:22:11 +0300","From":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","To":"Jacopo Mondi <jacopo@jmondi.org>","Message-ID":"<20200928232211.GC14614@pendragon.ideasonboard.com>","References":"<20200924145143.117733-1-jacopo@jmondi.org>\n\t<20200924145143.117733-2-jacopo@jmondi.org>\n\t<20200928232023.GA14614@pendragon.ideasonboard.com>","MIME-Version":"1.0","Content-Disposition":"inline","In-Reply-To":"<20200928232023.GA14614@pendragon.ideasonboard.com>","Subject":"Re: [libcamera-devel] [PATCH 1/3] libcamera: ipu3: Fix RAW+YUV\n\tcapture","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>","Cc":"libcamera-devel@lists.libcamera.org","Content-Type":"text/plain; charset=\"us-ascii\"","Content-Transfer-Encoding":"7bit","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}},{"id":12865,"web_url":"https://patchwork.libcamera.org/comment/12865/","msgid":"<20200929053458.GE1052036@oden.dyn.berto.se>","date":"2020-09-29T05:34:58","subject":"Re: [libcamera-devel] [PATCH 1/3] libcamera: ipu3: Fix RAW+YUV\n\tcapture","submitter":{"id":5,"url":"https://patchwork.libcamera.org/api/people/5/","name":"Niklas Söderlund","email":"niklas.soderlund@ragnatech.se"},"content":"Hi Jacopo,\n\nThanks for your work.\n\nOn 2020-09-24 16:51:41 +0200, Jacopo Mondi wrote:\n> When requesting one RAW stream and one YUV stream the\n> StreamConfiguration assigned to the RAW stream is the first one\n> added to the CameraConfiguration, while the YUV stream gets assigned to\n> the main output.\n> \n> At configure() time the viewfinder output needs to be configured with\n> the same format as the main output, but since the introduction of RAW\n> capture support, the pipeline has not been updated and still assumes\n> the main output configuration is the first one in the\n> CameraConfiguration. This causes the viewfinder to be configured\n> with the same format as the raw stream, breaking capture operations.\n> \n> Before this commit the following command fails and the ImgU does not\n> produce frames:\n> cam -srole=stillraw -srole=viewfinder -c2 -C\n> \n> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>\n\nReviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>\n\n> ---\n>  src/libcamera/pipeline/ipu3/ipu3.cpp | 20 +++++++++-----------\n>  1 file changed, 9 insertions(+), 11 deletions(-)\n> \n> diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> index 221259c7fe61..9cea6c7e9611 100644\n> --- a/src/libcamera/pipeline/ipu3/ipu3.cpp\n> +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp\n> @@ -476,25 +476,23 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n>  \t\treturn ret;\n>  \n>  \t/* Apply the format to the configured streams output devices. */\n> -\tbool outActive = false;\n> -\tbool vfActive = false;\n> +\tStreamConfiguration *mainCfg = nullptr;\n> +\tStreamConfiguration *vfCfg = nullptr;\n>  \n>  \tfor (unsigned int i = 0; i < config->size(); ++i) {\n>  \t\tStreamConfiguration &cfg = (*config)[i];\n>  \t\tStream *stream = cfg.stream();\n>  \n>  \t\tif (stream == outStream) {\n> +\t\t\tmainCfg = &cfg;\n>  \t\t\tret = imgu->configureOutput(cfg, &outputFormat);\n>  \t\t\tif (ret)\n>  \t\t\t\treturn ret;\n> -\n> -\t\t\toutActive = true;\n>  \t\t} else if (stream == vfStream) {\n> +\t\t\tvfCfg = &cfg;\n>  \t\t\tret = imgu->configureViewfinder(cfg, &outputFormat);\n>  \t\t\tif (ret)\n>  \t\t\t\treturn ret;\n> -\n> -\t\t\tvfActive = true;\n>  \t\t}\n>  \t}\n>  \n> @@ -503,14 +501,14 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n>  \t * the configuration of the active one for that purpose (there should\n>  \t * be at least one active stream in the configuration request).\n>  \t */\n> -\tif (!outActive) {\n> -\t\tret = imgu->configureOutput(config->at(0), &outputFormat);\n> +\tif (!mainCfg) {\n> +\t\tret = imgu->configureOutput(*vfCfg, &outputFormat);\n>  \t\tif (ret)\n>  \t\t\treturn ret;\n>  \t}\n>  \n> -\tif (!vfActive) {\n> -\t\tret = imgu->configureViewfinder(config->at(0), &outputFormat);\n> +\tif (!vfCfg) {\n> +\t\tret = imgu->configureViewfinder(*mainCfg, &outputFormat);\n>  \t\tif (ret)\n>  \t\t\treturn ret;\n>  \t}\n> @@ -529,7 +527,7 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)\n>  \t/* Apply the \"pipe_mode\" control to the ImgU subdevice. */\n>  \tControlList ctrls(imgu->imgu_->controls());\n>  \tctrls.set(V4L2_CID_IPU3_PIPE_MODE,\n> -\t\t  static_cast<int32_t>(vfActive ? IPU3PipeModeVideo :\n> +\t\t  static_cast<int32_t>(vfCfg ? IPU3PipeModeVideo :\n>  \t\t\t\t       IPU3PipeModeStillCapture));\n>  \tret = imgu->imgu_->setControls(&ctrls);\n>  \tif (ret) {\n> -- \n> 2.28.0\n> \n> _______________________________________________\n> libcamera-devel mailing list\n> libcamera-devel@lists.libcamera.org\n> https://lists.libcamera.org/listinfo/libcamera-devel","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 55C61C3B5B\n\tfor <parsemail@patchwork.libcamera.org>;\n\tTue, 29 Sep 2020 05:35:01 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id CF3DA6214D;\n\tTue, 29 Sep 2020 07:35:00 +0200 (CEST)","from mail-lf1-x141.google.com (mail-lf1-x141.google.com\n\t[IPv6:2a00:1450:4864:20::141])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id BADF56035E\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 29 Sep 2020 07:34:59 +0200 (CEST)","by mail-lf1-x141.google.com with SMTP id b22so3983091lfs.13\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 28 Sep 2020 22:34:59 -0700 (PDT)","from localhost (h-209-203.A463.priv.bahnhof.se. [155.4.209.203])\n\tby smtp.gmail.com with ESMTPSA id\n\ty80sm3048005lff.254.2020.09.28.22.34.58\n\t(version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\n\tMon, 28 Sep 2020 22:34:58 -0700 (PDT)"],"Authentication-Results":"lancelot.ideasonboard.com;\n\tdkim=fail reason=\"signature verification failed\" (2048-bit key;\n\tunprotected) header.d=ragnatech-se.20150623.gappssmtp.com\n\theader.i=@ragnatech-se.20150623.gappssmtp.com\n\theader.b=\"qnFBkLat\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=ragnatech-se.20150623.gappssmtp.com; s=20150623;\n\th=date:from:to:cc:subject:message-id:references:mime-version\n\t:content-disposition:content-transfer-encoding:in-reply-to;\n\tbh=UQall+tld+WJzfZ8Mj4/BCYUs+FiFBfSvkkkyh9RaW8=;\n\tb=qnFBkLatrvtaYfp32Gktzi2jFpCvxX7y9VS0vD1+Ahjvyo/qIhHeVQZkMIDZZQgwts\n\tyvECba8pItF5hE8Cl3KUbdQ8prGLsHyiWlgsHTdL0k8PRHWY6JECqOUw4WjUIiGDE7WH\n\tGptPaZdWaFYdq4SxyOepwtY7ri5EGyzr26UGGAE2YC9jXZmRkCl4eko0LzA+tlzlxq7a\n\tqTRPWj4sbk9Eyq8H5JBz5cCQj998foVhzI8Qt4H6v7MO+sdEdjyuyZaONMQCAaDwamM9\n\thdLy2ExXNusscu6gfI6e7ams43gKBN06UTnuNAL4BejzZ+tyykfWAdEKtXahsf3pnh8c\n\tpJLQ==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20161025;\n\th=x-gm-message-state:date:from:to:cc:subject:message-id:references\n\t:mime-version:content-disposition:content-transfer-encoding\n\t:in-reply-to;\n\tbh=UQall+tld+WJzfZ8Mj4/BCYUs+FiFBfSvkkkyh9RaW8=;\n\tb=mcRiaoA9xI3WR7dO189jouJ1F/VWGbwHhPv+ckppvo9NRoFrBXa7T46etwJEh8/eZS\n\t9nouRBtSuRlYZAElQ9iOrb9M4HXDm7fdoR8G6jw3w4YGmtzEWvHtB5spbw7FASQ+cgR4\n\t+E+ZA9ajl8h33/x6yyT/Pyh2Ho617OWzEAvAh0p36yittU4ODnjcQUtSugAjiP9YA9Dt\n\tnIPvwpiqxK890dsegiLD4w66g+O67xc+/WTqGYW61+g9+Q7+t8XVLk9r5kWG0ABXPRRh\n\t95gfsaqs1mV8Oa5AgXhi3fvTI5WQy9ZxPVUHvvgAQSerqVoYkPFt9QAeKrzMJRv2LjlY\n\tgQkQ==","X-Gm-Message-State":"AOAM533U6//it14BXoUXbaeEgTEM9G/wmbaQFrjrhioQtRhw7TGhq5p9\n\ttpA/OUintCb6yV6PiSKL6YYDebVDLJXxzw==","X-Google-Smtp-Source":"ABdhPJzsO6ZX7R1rAlf72OUk8zcXqelroAz3GTNcJrbLXNSqg75qvLEpZmvJGEyIWVbotwrWKt16uw==","X-Received":"by 2002:ac2:5f73:: with SMTP id c19mr632161lfc.250.1601357699103;\n\tMon, 28 Sep 2020 22:34:59 -0700 (PDT)","Date":"Tue, 29 Sep 2020 07:34:58 +0200","From":"Niklas =?iso-8859-1?q?S=F6derlund?= <niklas.soderlund@ragnatech.se>","To":"Jacopo Mondi <jacopo@jmondi.org>","Message-ID":"<20200929053458.GE1052036@oden.dyn.berto.se>","References":"<20200924145143.117733-1-jacopo@jmondi.org>\n\t<20200924145143.117733-2-jacopo@jmondi.org>","MIME-Version":"1.0","Content-Disposition":"inline","In-Reply-To":"<20200924145143.117733-2-jacopo@jmondi.org>","Subject":"Re: [libcamera-devel] [PATCH 1/3] libcamera: ipu3: Fix RAW+YUV\n\tcapture","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>","Cc":"libcamera-devel@lists.libcamera.org","Content-Type":"text/plain; charset=\"iso-8859-1\"","Content-Transfer-Encoding":"quoted-printable","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]