[{"id":32345,"web_url":"https://patchwork.libcamera.org/comment/32345/","msgid":"<87db9a48-cd16-4095-8db7-e2670ad5c8ca@collabora.com>","date":"2024-11-24T16:10:15","subject":"Re: [PATCH 4/9] libcamera: software_isp: Use common code to store\n\tdebayered pixels","submitter":{"id":140,"url":"https://patchwork.libcamera.org/api/people/140/","name":"Robert Mader","email":"robert.mader@collabora.com"},"content":"This temporarily introduces a red <-> blue color swap, see below.\n\nOn 20.11.24 19:00, Milan Zamazal wrote:\n> The debayering macros use the same pattern, let's extract it to a common\n> macro.  This reduces code duplication a bit now and it'll make changes\n> of debayering easier when color correction matrix is introduced.\n>\n> Signed-off-by: Milan Zamazal <mzamazal@redhat.com>\n> ---\n>   src/libcamera/software_isp/debayer_cpu.cpp | 56 +++++++++++-----------\n>   1 file changed, 28 insertions(+), 28 deletions(-)\n>\n> diff --git a/src/libcamera/software_isp/debayer_cpu.cpp b/src/libcamera/software_isp/debayer_cpu.cpp\n> index cf5ecdf7a..b9497d574 100644\n> --- a/src/libcamera/software_isp/debayer_cpu.cpp\n> +++ b/src/libcamera/software_isp/debayer_cpu.cpp\n> @@ -61,57 +61,57 @@ DebayerCpu::~DebayerCpu() = default;\n>   \tconst pixel_t *curr = (const pixel_t *)src[1] + xShift_; \\\n>   \tconst pixel_t *next = (const pixel_t *)src[2] + xShift_;\n>   \n> +#define STORE_PIXEL(b, g, r)        \\\n> +\t*dst++ = blue_[r];          \\\n> +\t*dst++ = green_[g];         \\\n> +\t*dst++ = red_[b];           \\\n\nblue_[r] -> blue_[b] and red_[b] -> red_[r]\n\n> +\tif constexpr (addAlphaByte) \\\n> +\t\t*dst++ = 255;       \\\n> +\tx++;\n> +\n>   /*\n>    * RGR\n>    * GBG\n>    * RGR\n>    */\n> -#define BGGR_BGR888(p, n, div)                                                                \\\n> -\t*dst++ = blue_[curr[x] / (div)];                                                      \\\n> -\t*dst++ = green_[(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div))];       \\\n> -\t*dst++ = red_[(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div))]; \\\n> -\tif constexpr (addAlphaByte)                                                           \\\n> -\t\t*dst++ = 255;                                                                 \\\n> -\tx++;\n> +#define BGGR_BGR888(p, n, div)                                                 \\\n> +\tSTORE_PIXEL(                                                           \\\n> +\t\tcurr[x] / (div),                                               \\\n> +\t\t(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div)), \\\n> +\t\t(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div)))\n>   \n>   /*\n>    * GBG\n>    * RGR\n>    * GBG\n>    */\n> -#define GRBG_BGR888(p, n, div)                                    \\\n> -\t*dst++ = blue_[(prev[x] + next[x]) / (2 * (div))];        \\\n> -\t*dst++ = green_[curr[x] / (div)];                         \\\n> -\t*dst++ = red_[(curr[x - p] + curr[x + n]) / (2 * (div))]; \\\n> -\tif constexpr (addAlphaByte)                               \\\n> -\t\t*dst++ = 255;                                     \\\n> -\tx++;\n> +#define GRBG_BGR888(p, n, div)                     \\\n> +\tSTORE_PIXEL(                               \\\n> +\t\t(prev[x] + next[x]) / (2 * (div)), \\\n> +\t\tcurr[x] / (div),                   \\\n> +\t\t(curr[x - p] + curr[x + n]) / (2 * (div)))\n>   \n>   /*\n>    * GRG\n>    * BGB\n>    * GRG\n>    */\n> -#define GBRG_BGR888(p, n, div)                                     \\\n> -\t*dst++ = blue_[(curr[x - p] + curr[x + n]) / (2 * (div))]; \\\n> -\t*dst++ = green_[curr[x] / (div)];                          \\\n> -\t*dst++ = red_[(prev[x] + next[x]) / (2 * (div))];          \\\n> -\tif constexpr (addAlphaByte)                                \\\n> -\t\t*dst++ = 255;                                      \\\n> -\tx++;\n> +#define GBRG_BGR888(p, n, div)                             \\\n> +\tSTORE_PIXEL(                                       \\\n> +\t\t(curr[x - p] + curr[x + n]) / (2 * (div)), \\\n> +\t\tcurr[x] / (div),                           \\\n> +\t\t(prev[x] + next[x]) / (2 * (div)))\n>   \n>   /*\n>    * BGB\n>    * GRG\n>    * BGB\n>    */\n> -#define RGGB_BGR888(p, n, div)                                                                 \\\n> -\t*dst++ = blue_[(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div))]; \\\n> -\t*dst++ = green_[(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div))];        \\\n> -\t*dst++ = red_[curr[x] / (div)];                                                        \\\n> -\tif constexpr (addAlphaByte)                                                            \\\n> -\t\t*dst++ = 255;                                                                  \\\n> -\tx++;\n> +#define RGGB_BGR888(p, n, div)                                                         \\\n> +\tSTORE_PIXEL(                                                                   \\\n> +\t\t(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div)), \\\n> +\t\t(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div)),         \\\n> +\t\tcurr[x] / (div))\n>   \n>   template<bool addAlphaByte>\n>   void DebayerCpu::debayer8_BGBG_BGR888(uint8_t *dst, const uint8_t *src[])","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 44074BD808\n\tfor <parsemail@patchwork.libcamera.org>;\n\tSun, 24 Nov 2024 16:10:23 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 95A4A65FF1;\n\tSun, 24 Nov 2024 17:10:22 +0100 (CET)","from sender4-op-o12.zoho.com (sender4-op-o12.zoho.com\n\t[136.143.188.12])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 2288E65FC6\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSun, 24 Nov 2024 17:10:20 +0100 (CET)","by mx.zohomail.com with SMTPS id 173246461704318.656962854964718; \n\tSun, 24 Nov 2024 08:10:17 -0800 (PST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=collabora.com\n\theader.i=robert.mader@collabora.com header.b=\"f27d4qP6\"; \n\tdkim-atps=neutral","ARC-Seal":"i=1; a=rsa-sha256; t=1732464619; cv=none; \n\td=zohomail.com; s=zohoarc; \n\tb=dcCPZstoDialXMV2hf83fXpD9kjc/5i7vw9uaRbqA/PzWdYAfyQjB1VooZDM49Y01gmumxtb2lXO8ks+Nmrm6Hg/o6CLyTu+j30hDgwL42riD76AnqS0msZ9ZX04FDrsZJ4jOU8nYjbFBdM3FMUAHxl09Ge/XW+uuCZuT8LP3so=","ARC-Message-Signature":"i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; \n\ts=zohoarc; t=1732464619;\n\th=Content-Type:Content-Transfer-Encoding:Date:Date:From:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:Subject:To:To:Message-Id:Reply-To:Cc;\n\tbh=DoYwkwBpZcrbgzzHyCPchIEIshi3xO2MUZ1NP9nTBqI=; \n\tb=AoMS2PKLeJOECA1OeDScD0KfnvY2K7KRzS/kbPEHcNa0S6YOjxCKVo4wuwjYZtMz4vR30071fQxzDq/qlNf66tMj2hQhVP7Ykx0LLDvlgJ7y6487oR/8tnJJcj9aG4LetuBF8xoqlqW2vqAqsnXu7GvcPIKrXgeiiClIegZN4fc=","ARC-Authentication-Results":"i=1; mx.zohomail.com;\n\tdkim=pass  header.i=collabora.com;\n\tspf=pass  smtp.mailfrom=robert.mader@collabora.com;\n\tdmarc=pass header.from=<robert.mader@collabora.com>","DKIM-Signature":"v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1732464619;\n\ts=zohomail; d=collabora.com; i=robert.mader@collabora.com;\n\th=Message-ID:Date:Date:MIME-Version:Subject:Subject:To:To:References:From:From:In-Reply-To:Content-Type:Content-Transfer-Encoding:Message-Id:Reply-To:Cc;\n\tbh=DoYwkwBpZcrbgzzHyCPchIEIshi3xO2MUZ1NP9nTBqI=;\n\tb=f27d4qP6l9GPQ0o0FquDVrkt1VGoKukxNIkAxn7p0K9Vmv++Do3kQwDojojKr9YW\n\t4V9DmN+9otqq+RbG+XXmhWX8xX5ARhXBn9FUzOibzm+q0OE/mfoEDNyKQ9j7+4qflBD\n\tfQ22pHB9/5ewdSzfndLT5k2RkDhb/fxq3LEVdhlQ=","Message-ID":"<87db9a48-cd16-4095-8db7-e2670ad5c8ca@collabora.com>","Date":"Sun, 24 Nov 2024 17:10:15 +0100","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH 4/9] libcamera: software_isp: Use common code to store\n\tdebayered pixels","To":"libcamera-devel@lists.libcamera.org","References":"<20241120180104.1221846-1-mzamazal@redhat.com>\n\t<20241120180104.1221846-5-mzamazal@redhat.com>","Content-Language":"en-US","From":"Robert Mader <robert.mader@collabora.com>","In-Reply-To":"<20241120180104.1221846-5-mzamazal@redhat.com>","Content-Type":"text/plain; charset=UTF-8; format=flowed","Content-Transfer-Encoding":"7bit","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>"}},{"id":32360,"web_url":"https://patchwork.libcamera.org/comment/32360/","msgid":"<87serf60su.fsf@redhat.com>","date":"2024-11-25T10:54:41","subject":"Re: [PATCH 4/9] libcamera: software_isp: Use common code to store\n\tdebayered pixels","submitter":{"id":177,"url":"https://patchwork.libcamera.org/api/people/177/","name":"Milan Zamazal","email":"mzamazal@redhat.com"},"content":"Hi Robert,\n\nRobert Mader <robert.mader@collabora.com> writes:\n\n> This temporarily introduces a red <-> blue color swap, see below.\n>\n> On 20.11.24 19:00, Milan Zamazal wrote:\n>> The debayering macros use the same pattern, let's extract it to a common\n>> macro.  This reduces code duplication a bit now and it'll make changes\n>> of debayering easier when color correction matrix is introduced.\n>>\n>> Signed-off-by: Milan Zamazal <mzamazal@redhat.com>\n>> ---\n>>   src/libcamera/software_isp/debayer_cpu.cpp | 56 +++++++++++-----------\n>>   1 file changed, 28 insertions(+), 28 deletions(-)\n>>\n>> diff --git a/src/libcamera/software_isp/debayer_cpu.cpp b/src/libcamera/software_isp/debayer_cpu.cpp\n>> index cf5ecdf7a..b9497d574 100644\n>> --- a/src/libcamera/software_isp/debayer_cpu.cpp\n>> +++ b/src/libcamera/software_isp/debayer_cpu.cpp\n>> @@ -61,57 +61,57 @@ DebayerCpu::~DebayerCpu() = default;\n>>   \tconst pixel_t *curr = (const pixel_t *)src[1] + xShift_; \\\n>>   \tconst pixel_t *next = (const pixel_t *)src[2] + xShift_;\n>>   +#define STORE_PIXEL(b, g, r)        \\\n>> +\t*dst++ = blue_[r];          \\\n>> +\t*dst++ = green_[g];         \\\n>> +\t*dst++ = red_[b];           \\\n>\n> blue_[r] -> blue_[b] and red_[b] -> red_[r]\n\nOh, thank you, I'll fix it in v2.\n\n>> +\tif constexpr (addAlphaByte) \\\n>> +\t\t*dst++ = 255;       \\\n>> +\tx++;\n>> +\n>>   /*\n>>    * RGR\n>>    * GBG\n>>    * RGR\n>>    */\n>> -#define BGGR_BGR888(p, n, div)                                                                \\\n>> -\t*dst++ = blue_[curr[x] / (div)];                                                      \\\n>> -\t*dst++ = green_[(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div))];       \\\n>> -\t*dst++ = red_[(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div))]; \\\n>> -\tif constexpr (addAlphaByte)                                                           \\\n>> -\t\t*dst++ = 255;                                                                 \\\n>> -\tx++;\n>> +#define BGGR_BGR888(p, n, div)                                                 \\\n>> +\tSTORE_PIXEL(                                                           \\\n>> +\t\tcurr[x] / (div),                                               \\\n>> +\t\t(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div)), \\\n>> +\t\t(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div)))\n>>     /*\n>>    * GBG\n>>    * RGR\n>>    * GBG\n>>    */\n>> -#define GRBG_BGR888(p, n, div)                                    \\\n>> -\t*dst++ = blue_[(prev[x] + next[x]) / (2 * (div))];        \\\n>> -\t*dst++ = green_[curr[x] / (div)];                         \\\n>> -\t*dst++ = red_[(curr[x - p] + curr[x + n]) / (2 * (div))]; \\\n>> -\tif constexpr (addAlphaByte)                               \\\n>> -\t\t*dst++ = 255;                                     \\\n>> -\tx++;\n>> +#define GRBG_BGR888(p, n, div)                     \\\n>> +\tSTORE_PIXEL(                               \\\n>> +\t\t(prev[x] + next[x]) / (2 * (div)), \\\n>> +\t\tcurr[x] / (div),                   \\\n>> +\t\t(curr[x - p] + curr[x + n]) / (2 * (div)))\n>>     /*\n>>    * GRG\n>>    * BGB\n>>    * GRG\n>>    */\n>> -#define GBRG_BGR888(p, n, div)                                     \\\n>> -\t*dst++ = blue_[(curr[x - p] + curr[x + n]) / (2 * (div))]; \\\n>> -\t*dst++ = green_[curr[x] / (div)];                          \\\n>> -\t*dst++ = red_[(prev[x] + next[x]) / (2 * (div))];          \\\n>> -\tif constexpr (addAlphaByte)                                \\\n>> -\t\t*dst++ = 255;                                      \\\n>> -\tx++;\n>> +#define GBRG_BGR888(p, n, div)                             \\\n>> +\tSTORE_PIXEL(                                       \\\n>> +\t\t(curr[x - p] + curr[x + n]) / (2 * (div)), \\\n>> +\t\tcurr[x] / (div),                           \\\n>> +\t\t(prev[x] + next[x]) / (2 * (div)))\n>>     /*\n>>    * BGB\n>>    * GRG\n>>    * BGB\n>>    */\n>> -#define RGGB_BGR888(p, n, div)                                                                 \\\n>> -\t*dst++ = blue_[(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div))]; \\\n>> -\t*dst++ = green_[(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div))];        \\\n>> -\t*dst++ = red_[curr[x] / (div)];                                                        \\\n>> -\tif constexpr (addAlphaByte)                                                            \\\n>> -\t\t*dst++ = 255;                                                                  \\\n>> -\tx++;\n>> +#define RGGB_BGR888(p, n, div)                                                         \\\n>> +\tSTORE_PIXEL(                                                                   \\\n>> +\t\t(prev[x - p] + prev[x + n] + next[x - p] + next[x + n]) / (4 * (div)), \\\n>> +\t\t(prev[x] + curr[x - p] + curr[x + n] + next[x]) / (4 * (div)),         \\\n>> +\t\tcurr[x] / (div))\n>>     template<bool addAlphaByte>\n>>   void DebayerCpu::debayer8_BGBG_BGR888(uint8_t *dst, const uint8_t *src[])","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 921CDBD160\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon, 25 Nov 2024 10:54:50 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 073CD66020;\n\tMon, 25 Nov 2024 11:54:50 +0100 (CET)","from us-smtp-delivery-124.mimecast.com\n\t(us-smtp-delivery-124.mimecast.com [170.10.129.124])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 01A7366010\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 25 Nov 2024 11:54:47 +0100 (CET)","from mail-wm1-f70.google.com (mail-wm1-f70.google.com\n\t[209.85.128.70]) by relay.mimecast.com with ESMTP with STARTTLS\n\t(version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id\n\tus-mta-679-vqOX2J6SOiuuXjCDgDn0XA-1; Mon, 25 Nov 2024 05:54:45 -0500","by mail-wm1-f70.google.com with SMTP id\n\t5b1f17b1804b1-4349d895ef8so11328115e9.0\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 25 Nov 2024 02:54:45 -0800 (PST)","from nuthatch (ip-77-48-47-2.net.vodafone.cz. [77.48.47.2])\n\tby smtp.gmail.com with ESMTPSA id\n\t5b1f17b1804b1-433cde8c862sm127043835e9.29.2024.11.25.02.54.42\n\t(version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\n\tMon, 25 Nov 2024 02:54:42 -0800 (PST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=redhat.com header.i=@redhat.com\n\theader.b=\"CAaY7lPV\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com;\n\ts=mimecast20190719; t=1732532087;\n\th=from:from:reply-to:subject:subject:date:date:message-id:message-id:\n\tto:to:cc:cc:mime-version:mime-version:content-type:content-type:\n\tin-reply-to:in-reply-to:references:references;\n\tbh=oH6xE2aJknmInIMh3vZGLQUmaml/MjGZ0Zn13Qkkefc=;\n\tb=CAaY7lPVZpTfAISBkSnwbXUSk93T4Ld08I+QCjDhE/EQ2lFGVp2V3stFfnkZ5WcVzlwVzk\n\tXz61gVavOGYxN+scSCFRVyQiZwrQ9NOdtWKnMOyKiE8d3E35LB8fCvwW/f41uCYNbSVhoI\n\tAPvOGmrMtlwbpTQv7DEw7IP5tL6sZ+o=","X-MC-Unique":"vqOX2J6SOiuuXjCDgDn0XA-1","X-Mimecast-MFC-AGG-ID":"vqOX2J6SOiuuXjCDgDn0XA","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20230601; t=1732532083; x=1733136883;\n\th=mime-version:user-agent:message-id:date:references:in-reply-to\n\t:subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date\n\t:message-id:reply-to;\n\tbh=oH6xE2aJknmInIMh3vZGLQUmaml/MjGZ0Zn13Qkkefc=;\n\tb=WCua950U9f7PVt3ozCCzRuwDxbQ09Uvxpo04UDBAFlWsvBhKkhgvOeKhXdyf7nPwJX\n\tVe2PU/9rdP3ZXkrfw6vxI2DNuJJyox1l4BRSgaG3rpvpRgqUHqppAKTnSunfhTjKqvC+\n\t9oqFKLRfAEbFsmQ/LN+9Fr6lBhhc3C4QiWyL8LAPDWvMgPEeD2rCy4aQ5Yd40SUDz5xJ\n\tJNK5IglyJKrxzc3AaHQ4VChmLp/z40vf4PR3rSwsMkF9A5wPJhzXVw6ywQ/KGYzDQ89/\n\tIR0Nodm8wMUWSK5ntet6a3P/xN5d2j4SfcdLW7B9E3o1QK7jRA+u85+P59BdmBhwLojc\n\tQVbg==","X-Gm-Message-State":"AOJu0YziZiLJofvPKhu/uYVpAcLIgY+/2X0PrV1H4OO630pd6FKZJ2xu\n\t6971mkEVb90jZw6/SODZ8bv/7scqRC9MvAuG3GrmtL93NoRmIdk6atxqqDv7pdLBDEIZBOB7Bqm\n\toOvCZZDJVxoAZl3bDAOej/ICAwmmRz1nXmGJ6f/fh9Orp2SIv0GNndiLRyHegNNyfA7fvFDxKnf\n\tHZqEQprZHkb7ZaEKBCW9obrM+H3rQGfOoW0Jvicz7LjghbAGhxOM2Pedo=","X-Gm-Gg":"ASbGncs32zImswg2KZPUq6Ry6hRIaGTqVLJLZLE+bS+EEWCtixQw2QCWEL4udbURXiu\n\tkibTlb58Ky0FO5TtHLo2GLJmU7xTP95fRGTAbpn0YSgY+gKALLP7qH3V/3arauPmvR25pohqoxN\n\tna5bEtxLAzRkYjxxqoTIGgKXHVHij6GCSBZnDjqhvpKF+M9MM4fLtuA/GNjo+hPKYv7cWnejalu\n\tsX3EIbAtRcXrV6Zl1k0eyfEAEXqqZUnRBIIUoC6aw5gV8toKpi6BVAP4dihD1JbusZ73Y4=","X-Received":["by 2002:a05:600c:3acb:b0:431:24c3:dbaa with SMTP id\n\t5b1f17b1804b1-433ce410275mr137475415e9.2.1732532083485; \n\tMon, 25 Nov 2024 02:54:43 -0800 (PST)","by 2002:a05:600c:3acb:b0:431:24c3:dbaa with SMTP id\n\t5b1f17b1804b1-433ce410275mr137475185e9.2.1732532083125; \n\tMon, 25 Nov 2024 02:54:43 -0800 (PST)"],"X-Google-Smtp-Source":"AGHT+IGvPHT0V1EjYgwufKDjTrG4vOWtnfa6O/bR83tVVxcDC1J4Yq5wGEdjvLxdAPUJlAoEMO+mIw==","From":"Milan Zamazal <mzamazal@redhat.com>","To":"Robert Mader <robert.mader@collabora.com>","Cc":"libcamera-devel@lists.libcamera.org","Subject":"Re: [PATCH 4/9] libcamera: software_isp: Use common code to store\n\tdebayered pixels","In-Reply-To":"<87db9a48-cd16-4095-8db7-e2670ad5c8ca@collabora.com> (Robert\n\tMader's message of \"Sun, 24 Nov 2024 17:10:15 +0100\")","References":"<20241120180104.1221846-1-mzamazal@redhat.com>\n\t<20241120180104.1221846-5-mzamazal@redhat.com>\n\t<87db9a48-cd16-4095-8db7-e2670ad5c8ca@collabora.com>","Date":"Mon, 25 Nov 2024 11:54:41 +0100","Message-ID":"<87serf60su.fsf@redhat.com>","User-Agent":"Gnus/5.13 (Gnus v5.13)","MIME-Version":"1.0","X-Mimecast-Spam-Score":"0","X-Mimecast-MFC-PROC-ID":"LzrsOaCtkQNl1ZCs0pSKzqazCm2zSHIODN6EJUrETyI_1732532084","X-Mimecast-Originator":"redhat.com","Content-Type":"text/plain","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>"}}]