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 ESMTP id 62243442A2 for ; Wed, 5 Oct 2022 05:02:09 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 252C168BAF9; Wed, 5 Oct 2022 08:02:07 +0300 (EEST) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4FF9568B800 for ; Wed, 5 Oct 2022 08:02:01 +0300 (EEST) Received: from w3.tutanota.de (unknown [192.168.1.164]) by w4.tutanota.de (Postfix) with ESMTP id 055661060140 for ; Wed, 5 Oct 2022 05:02:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1664946120; s=s1; d=lynne.ee; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=NwS7d3efkG9Lm4QWgBLn88piiVHR2H4IBr3a8cEo3YE=; b=ic0GAQgIet3DqQchBXOF7RMifF0nTOHUtxhoqwLJVwJuc8uKBsQVBJ/w8WfqXiRC bt6/v2Id6k+YnyEhaWF3NGDGMQVZnfxb3JFiJCqIx6lUIuq+H8rar9ZNkhJvOTLuDgO Ti8uH1ZkSLEIJIO/v6AHYFMf3NahZ4qEGxHq2fLrgvCOsdcCR1UyUs2PDKR2yVq77al N3Jb6Cbn3nplt4jt5kng7O2XhkYEWZuNa/uzrrvZix3v502HrJrIaL+ysb8UZgQ8Wmv /2+yePyLa6g9fT10E66oeGfNF3wDTIZJkaRUZI0FU0pFh1h+Y1geIxH99ofXt8SupN2 Z9g29J8LCQ== Date: Wed, 5 Oct 2022 07:02:00 +0200 (CEST) From: Lynne To: FFmpeg development discussions and patches Message-ID: In-Reply-To: <20221004174913.49181-1-remi@remlab.net> References: <20221004174913.49181-1-remi@remlab.net> MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH] riscv: remove unnecessary #include's 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: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Oct 4, 2022, 19:49 by remi@remlab.net: > Pointed out by Andreas Rheinhardt. > --- > libavcodec/riscv/fmtconvert_rvv.S | 1 - > libavcodec/riscv/idctdsp_rvv.S | 1 - > libavcodec/riscv/pixblockdsp_rvi.S | 1 - > libavcodec/riscv/pixblockdsp_rvv.S | 1 - > libavcodec/riscv/vorbisdsp_rvv.S | 1 - > libavutil/riscv/asm.S | 2 -- > libavutil/riscv/fixed_dsp_rvv.S | 1 - > libavutil/riscv/float_dsp_rvv.S | 1 - > 8 files changed, 9 deletions(-) > > diff --git a/libavcodec/riscv/fmtconvert_rvv.S b/libavcodec/riscv/fmtconvert_rvv.S > index 49893ec8d7..51365753d9 100644 > --- a/libavcodec/riscv/fmtconvert_rvv.S > +++ b/libavcodec/riscv/fmtconvert_rvv.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "libavutil/riscv/asm.S" > > func ff_int32_to_float_fmul_scalar_rvv, zve32f > diff --git a/libavcodec/riscv/idctdsp_rvv.S b/libavcodec/riscv/idctdsp_rvv.S > index f5e1165eee..06e64e6529 100644 > --- a/libavcodec/riscv/idctdsp_rvv.S > +++ b/libavcodec/riscv/idctdsp_rvv.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "libavutil/riscv/asm.S" > > func ff_put_pixels_clamped_rvv, zve32x > diff --git a/libavcodec/riscv/pixblockdsp_rvi.S b/libavcodec/riscv/pixblockdsp_rvi.S > index e84170244b..efdd422228 100644 > --- a/libavcodec/riscv/pixblockdsp_rvi.S > +++ b/libavcodec/riscv/pixblockdsp_rvi.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "libavutil/riscv/asm.S" > > func ff_get_pixels_8_rvi > diff --git a/libavcodec/riscv/pixblockdsp_rvv.S b/libavcodec/riscv/pixblockdsp_rvv.S > index c125408523..1a364e6dab 100644 > --- a/libavcodec/riscv/pixblockdsp_rvv.S > +++ b/libavcodec/riscv/pixblockdsp_rvv.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "libavutil/riscv/asm.S" > > func ff_get_pixels_8_rvv, zve32x > diff --git a/libavcodec/riscv/vorbisdsp_rvv.S b/libavcodec/riscv/vorbisdsp_rvv.S > index bbe9c7dc6d..f45e7dc2f1 100644 > --- a/libavcodec/riscv/vorbisdsp_rvv.S > +++ b/libavcodec/riscv/vorbisdsp_rvv.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "libavutil/riscv/asm.S" > > func ff_vorbis_inverse_coupling_rvv, zve32f > diff --git a/libavutil/riscv/asm.S b/libavutil/riscv/asm.S > index de5e1ad0a6..ffa0bd9068 100644 > --- a/libavutil/riscv/asm.S > +++ b/libavutil/riscv/asm.S > @@ -19,8 +19,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > - > #if defined (__riscv_float_abi_soft) > #define NOHWF > #define NOHWD > diff --git a/libavutil/riscv/fixed_dsp_rvv.S b/libavutil/riscv/fixed_dsp_rvv.S > index 0e78734b4c..a91316e1da 100644 > --- a/libavutil/riscv/fixed_dsp_rvv.S > +++ b/libavutil/riscv/fixed_dsp_rvv.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "asm.S" > > // (a0) = (a0) + (a1), (a1) = (a0) - (a1) [0..a2-1] > diff --git a/libavutil/riscv/float_dsp_rvv.S b/libavutil/riscv/float_dsp_rvv.S > index ab2e0c42d7..2bf8c6ee96 100644 > --- a/libavutil/riscv/float_dsp_rvv.S > +++ b/libavutil/riscv/float_dsp_rvv.S > @@ -18,7 +18,6 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > > -#include "config.h" > #include "asm.S" > > // (a0) = (a1) * (a2) [0..a3-1] > Pushed alongside the alacdsp patch. Thanks. _______________________________________________ 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".