From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 8272E48A8D for ; Tue, 28 Jan 2025 12:58:15 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id BB5ED68A4EE; Tue, 28 Jan 2025 14:58:11 +0200 (EET) Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3094368A542 for ; Tue, 28 Jan 2025 14:58:04 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 829A620008 for ; Tue, 28 Jan 2025 12:58:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1738069083; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=G1iG6MH+qr761gJjEpk/OGEXoagjOUIjqqsv4/JAhKw=; b=lA9O6KqTm7dxjmco8+52UzxerYkZRhtzc452aSWYqWmcMIcner22YJWDghrodn5Qw8av5E PiD7Sxoj2n6m3hEkRjo6lxnipY80afXCgMVscn2LZNU943+MlHZhzRxIrbmILdTiPrb2oI k7Guh5jgocQTTcS1uQpjJjJYBfA97+ZujC0VsXHNJgn+m8vOMVqHG73QAPa5PX1TdhHqZB v/uNYkhgreAu4HHovvseU3hiZ+SrnSFuGn3FEWVB0Balvjf80IH3gpJuZ5V93P1cwlF4y4 vc/KiJ0KpX2bizKzIrGNhzcxU58zYMaiNmWm/SlXqg/wxGNJFJhIkEUiTtxTfA== Date: Tue, 28 Jan 2025 13:58:02 +0100 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20250128125802.GV4991@pb2> References: <20250126064149.363420-1-16567adigashreesh@gmail.com> MIME-Version: 1.0 In-Reply-To: <20250126064149.363420-1-16567adigashreesh@gmail.com> X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH v2] swscale/x86/rgb2rgb: add AVX512ICL versions of shuffle_bytes X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: multipart/mixed; boundary="===============4971691415642331879==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============4971691415642331879== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="697SzmQoH8RD/DKo" Content-Disposition: inline --697SzmQoH8RD/DKo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 26, 2025 at 11:59:20AM +0530, Shreesh Adiga wrote: > Signed-off-by: Shreesh Adiga <16567adigashreesh@gmail.com> > --- > v2: Tried to align operands and improve indentation for ASM routine. >=20 > libswscale/x86/rgb2rgb.c | 21 +++++++++ > libswscale/x86/rgb_2_rgb.asm | 90 +++++++++++++++++++++++------------- > 2 files changed, 80 insertions(+), 31 deletions(-) fails to build here: libswscale/x86/rgb_2_rgb.asm:141: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:142: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:143: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:144: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:145: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:146: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:147: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:148: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here libswscale/x86/rgb_2_rgb.asm:149: error: invalid combination of opcode and = operands libswscale/x86/rgb_2_rgb.asm:73: ... from macro `SHUFFLE_BYTES' defined here make: *** [ffbuild/common.mak:103: libswscale/x86/rgb_2_rgb.o] Error 1 nasm --version NASM version 2.14.02 gcc --version gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0 [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Avoid a single point of failure, be that a person or equipment. --697SzmQoH8RD/DKo Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZ5jUUQAKCRBhHseHBAsP q3ycAJ4ymTD6ltf4ua17Zd792CjHYjCRzgCff2rmtzW3G0dLEO5qWgn2oiuzjbM= =ioX+ -----END PGP SIGNATURE----- --697SzmQoH8RD/DKo-- --===============4971691415642331879== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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". --===============4971691415642331879==--