Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo
@ 2024-06-25  8:58 J. Dekker
  2024-06-26 10:49 ` Niklas Haas
  2024-06-26 18:45 ` Rémi Denis-Courmont
  0 siblings, 2 replies; 3+ messages in thread
From: J. Dekker @ 2024-06-25  8:58 UTC (permalink / raw)
  To: ffmpeg-devel

Signed-off-by: J. Dekker <jdek@itanimul.li>
---
 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
     /*
-- 
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".

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo
  2024-06-25  8:58 [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo J. Dekker
@ 2024-06-26 10:49 ` Niklas Haas
  2024-06-26 18:45 ` Rémi Denis-Courmont
  1 sibling, 0 replies; 3+ messages in thread
From: Niklas Haas @ 2024-06-26 10:49 UTC (permalink / raw)
  To: ffmpeg-devel

On Tue, 25 Jun 2024 10:58:00 +0200 "J. Dekker" <jdek@itanimul.li> wrote:
> Signed-off-by: J. Dekker <jdek@itanimul.li>
> ---
>  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".

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo
  2024-06-25  8:58 [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo J. Dekker
  2024-06-26 10:49 ` Niklas Haas
@ 2024-06-26 18:45 ` Rémi Denis-Courmont
  1 sibling, 0 replies; 3+ messages in thread
From: Rémi Denis-Courmont @ 2024-06-26 18:45 UTC (permalink / raw)
  To: ffmpeg-devel

Le tiistaina 25. kesäkuuta 2024, 11.58.00 EEST J. Dekker a écrit :
> Signed-off-by: J. Dekker <jdek@itanimul.li>
> ---
>  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

-- 
雷米‧德尼-库尔蒙
http://www.remlab.net/



_______________________________________________
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".

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-06-26 18:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-25  8:58 [FFmpeg-devel] [PATCH] avutil/riscv/cpu: fix __riscv_v_min_vlen typo J. Dekker
2024-06-26 10:49 ` Niklas Haas
2024-06-26 18:45 ` Rémi Denis-Courmont

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git