diff options
author | Rémi Denis-Courmont <remi@remlab.net> | 2024-07-19 22:44:21 +0300 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2024-07-25 23:09:58 +0300 |
commit | 45d7078a21823ef0734a84514c8221da569009cb (patch) | |
tree | c54d14d99132a9411dbadf78a795ba007bcf679a /libavutil/tests | |
parent | 529d4230123dbb33a719a4d5ec7e47567f04cd06 (diff) | |
download | ffmpeg-45d7078a21823ef0734a84514c8221da569009cb.tar.gz |
lavu/riscv: add CPU flag for B bit manipulations
The B extension was finally ratified in May 2024, encompassing:
- Zba (addresses),
- Zbb (basics) and
- Zbs (single bits).
It does not include Zbc (base-2 polynomials).
Diffstat (limited to 'libavutil/tests')
-rw-r--r-- | libavutil/tests/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/tests/cpu.c b/libavutil/tests/cpu.c index 02b98682e3..b4b11775d8 100644 --- a/libavutil/tests/cpu.c +++ b/libavutil/tests/cpu.c @@ -90,6 +90,7 @@ static const struct { { AV_CPU_FLAG_RVD, "rvd" }, { AV_CPU_FLAG_RVB_ADDR, "zba" }, { AV_CPU_FLAG_RVB_BASIC, "zbb" }, + { AV_CPU_FLAG_RVB, "rvb" }, { AV_CPU_FLAG_RVV_I32, "zve32x" }, { AV_CPU_FLAG_RVV_F32, "zve32f" }, { AV_CPU_FLAG_RVV_I64, "zve64x" }, |