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 060AF4AFEF for ; Wed, 26 Jun 2024 10:49:39 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6701868D40C; Wed, 26 Jun 2024 13:49:37 +0300 (EEST) Received: from haasn.dev (haasn.dev [78.46.187.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 4733168CBD3 for ; Wed, 26 Jun 2024 13:49:30 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=haasn.xyz; s=mail; t=1719398970; bh=d/JmCd8ODKHk4MSDk44uWQJ1QJ2CwfapDnqhx6v4mIM=; h=Date:From:To:Subject:In-Reply-To:References:From; b=v0AoZr8/Fd/+Prw+nufI/Lw5mS/nJtThdfcTMY6kk3jxd1sSWp9U1ELT4/dPOvLew qwlnZmJxoT9oSasqOsmqHOJzroE8otOmzA8vl/oBcPNMj7fTv7p7BsrRApDRe7drSw YoQrZwp6MLS7UGXhwxeRcO9o4JscaJYERlOcFAH0= Received: from haasn.dev (unknown [10.30.0.2]) by haasn.dev (Postfix) with ESMTP id 007144033C for ; Wed, 26 Jun 2024 12:49:29 +0200 (CEST) Date: Wed, 26 Jun 2024 12:49:29 +0200 Message-ID: <20240626124929.GB15180@haasn.xyz> From: Niklas Haas To: ffmpeg-devel@ffmpeg.org In-Reply-To: <20240625085800.113777-1-jdek@itanimul.li> References: <20240625085800.113777-1-jdek@itanimul.li> MIME-Version: 1.0 Content-Disposition: inline Subject: Re: [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo 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: On Tue, 25 Jun 2024 10:58:00 +0200 "J. Dekker" wrote: > Signed-off-by: J. Dekker > --- > libavutil/riscv/cpu.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavutil/riscv/cpu.h b/libavutil/riscv/cpu.h > index bb8e08aa14..191e4478c5 100644 > --- a/libavutil/riscv/cpu.h > +++ b/libavutil/riscv/cpu.h > @@ -65,7 +65,7 @@ static inline size_t ff_get_rv_vlenb(void) > static inline bool ff_rv_vlen_least(unsigned int bits) > { > #ifdef __riscv_v_min_vlen > - if (bits <= __riscv_min_vlen) > + if (bits <= __riscv_v_min_vlen) > return true; > #else > /* LGTM. Seems like an obvious typo. > -- > 2.44.1 > > _______________________________________________ > 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". _______________________________________________ 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".