From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <ffmpeg-devel-bounces@ffmpeg.org> Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 264CF4E6C5 for <ffmpegdev@gitmailbox.com>; Fri, 14 Mar 2025 00:09:40 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3304B68E5F0; Fri, 14 Mar 2025 02:09:38 +0200 (EET) Received: from haasn.dev (haasn.dev [78.46.187.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id F2D8B68CC8D for <ffmpeg-devel@ffmpeg.org>; Fri, 14 Mar 2025 02:09:31 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=haasn.xyz; s=mail; t=1741910971; bh=CImnShn+OX2/hm3yYHo14SeDK+8CZ+wmwSy/i8wWDAY=; h=Date:From:To:Subject:In-Reply-To:References:From; b=Rv2yeXf4L0rl84NMUX6knQuKr2CzLVUZlUcLP/3PC5N1jHHoCaM/noDKJcV3T6us+ 6rU3dPbRMuThX/VbCKk21CzrzbbNNwpsRR0XfZJdIjpL/+I5dgqgaGK7R38V+yNtpM +8jRk9Qkp/jCb7HnUhaNfzRF5Q0djDXizkeK6Ap8= Received: from localhost (unknown [185.35.208.89]) by haasn.dev (Postfix) with UTF8SMTPSA id 3E6CF412B1 for <ffmpeg-devel@ffmpeg.org>; Fri, 14 Mar 2025 01:09:31 +0100 (CET) Date: Fri, 14 Mar 2025 01:09:30 +0100 Message-ID: <20250314010930.GB892569@haasn.xyz> From: Niklas Haas <ffmpeg@haasn.xyz> To: ffmpeg-devel@ffmpeg.org In-Reply-To: <20250313235425.GC4991@pb2> References: <20241226193325.288834126EE@natalya.videolan.org> <20250126182659.GE2768425@pb2> <20250313235425.GC4991@pb2> MIME-Version: 1.0 Content-Disposition: inline Subject: Re: [FFmpeg-devel] [FFmpeg-cvslog] swscale: use 16-bit intermediate precision for RGB/XYZ conversion X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches <ffmpeg-devel.ffmpeg.org> List-Unsubscribe: <https://ffmpeg.org/mailman/options/ffmpeg-devel>, <mailto:ffmpeg-devel-request@ffmpeg.org?subject=unsubscribe> List-Archive: <https://ffmpeg.org/pipermail/ffmpeg-devel> List-Post: <mailto:ffmpeg-devel@ffmpeg.org> List-Help: <mailto:ffmpeg-devel-request@ffmpeg.org?subject=help> List-Subscribe: <https://ffmpeg.org/mailman/listinfo/ffmpeg-devel>, <mailto:ffmpeg-devel-request@ffmpeg.org?subject=subscribe> Reply-To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" <ffmpeg-devel-bounces@ffmpeg.org> Archived-At: <https://master.gitmailbox.com/ffmpegdev/20250314010930.GB892569@haasn.xyz/> List-Archive: <https://master.gitmailbox.com/ffmpegdev/> List-Post: <mailto:ffmpegdev@gitmailbox.com> On Fri, 14 Mar 2025 00:54:25 +0100 Michael Niedermayer <michael@niedermayer.cc> wrote: > Hi > > On Sun, Jan 26, 2025 at 07:26:59PM +0100, Michael Niedermayer wrote: > > On Thu, Dec 26, 2024 at 07:33:23PM +0000, Niklas Haas wrote: > > > ffmpeg | branch: master | Niklas Haas <git@haasn.dev> | Mon Dec 16 14:49:39 2024 +0100| [af6d52eec66961f6a502b0f2f390c12226d087cd] | committer: Niklas Haas > > > > > > swscale: use 16-bit intermediate precision for RGB/XYZ conversion > > > > > > The current logic uses 12-bit linear light math, which is woefully insufficient > > > and leads to nasty postarization artifacts. This patch simply switches the > > > internal logic to 16-bit precision. > > > > > > This raises the memory requirement of these tables from 32 kB to 272 kB. > > > > > > All relevant FATE tests updated for improved accuracy. > > > > > > Fixes: #4829 > > > Signed-off-by: Niklas Haas <git@haasn.dev> > > > Sponsored-by: Sovereign Tech Fund > > > > > > > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=af6d52eec66961f6a502b0f2f390c12226d087cd > > > --- > > > > this breaks on x86-32 > > ping > > the fate tests for a major architecture are broken since this > This impacts future bisections over that range for example My bad, missed this email for some reason. Will investigate and fix tomorrow. > > you can trivially test this on x86-64 with something like: > --cross-prefix=/usr/i686-linux-gnu/bin/ --cc='ccache i686-linux-gnu-gcc-7' --arch=x86_32 --target-os=linux --enable-cross-compile > if you have the correponding packages installed > > before af6d52eec66961f6a502b0f2f390c12226d087cd > TEST filter-pixdesc-xyz12be > > after af6d52eec66961f6a502b0f2f390c12226d087cd: > --- src/tests/ref/fate/filter-pixdesc-xyz12be 2025-03-14 00:46:40.445681223 +0100 > +++ tests/data/fate/filter-pixdesc-xyz12be 2025-03-14 00:47:08.301903796 +0100 > @@ -1 +1 @@ > -pixdesc-xyz12be 1508a33dea936c45d9ee13f7743af00d > +pixdesc-xyz12be 198f43f452bc55f4ca1e0e0171de5c4c > Test filter-pixdesc-xyz12be failed. Look at tests/data/fate/filter-pixdesc-xyz12be.err for details. > make: *** [src/tests/Makefile:311: fate-filter-pixdesc-xyz12be] Error 1 > > in master: > --- src/tests/ref/fate/filter-pixdesc-xyz12be 2025-03-14 00:46:40.445681223 +0100 > +++ tests/data/fate/filter-pixdesc-xyz12be 2025-03-14 00:48:43.042660972 +0100 > @@ -1 +1 @@ > -pixdesc-xyz12be 1508a33dea936c45d9ee13f7743af00d > +pixdesc-xyz12be 198f43f452bc55f4ca1e0e0171de5c4c > Test filter-pixdesc-xyz12be failed. Look at tests/data/fate/filter-pixdesc-xyz12be.err for details. > make: *** [src/tests/Makefile:315: fate-filter-pixdesc-xyz12be] Error 1 > > > thx > > [...] > > -- > Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB > > Never trust a computer, one day, it may think you are the virus. -- Compn _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".