diff options
author | Rémi Denis-Courmont <remi@remlab.net> | 2024-05-07 22:08:38 +0300 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2024-05-11 11:38:49 +0300 |
commit | 01c5f4ad9fa14f2000402230684426dbf764d796 (patch) | |
tree | 9bde73584131cacc65754b03821ede8d1f114255 /libavutil/cpu.h | |
parent | 11f689317d66c9b9acb1abed47c1c825be155a58 (diff) | |
download | ffmpeg-01c5f4ad9fa14f2000402230684426dbf764d796.tar.gz |
riscv: add Zvbb vector bit manipulation extension
Diffstat (limited to 'libavutil/cpu.h')
-rw-r--r-- | libavutil/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/cpu.h b/libavutil/cpu.h index 8dff341886..cc19828d4b 100644 --- a/libavutil/cpu.h +++ b/libavutil/cpu.h @@ -90,6 +90,7 @@ #define AV_CPU_FLAG_RVV_F64 (1 << 6) ///< Vectors of double's #define AV_CPU_FLAG_RVB_BASIC (1 << 7) ///< Basic bit-manipulations #define AV_CPU_FLAG_RVB_ADDR (1 << 8) ///< Address bit-manipulations +#define AV_CPU_FLAG_RV_ZVBB (1 << 9) ///< Vector basic bit-manipulations /** * Return the flags which specify extensions supported by the CPU. |