lavu/riscv: indent code

This reindents code to prepare for the next changeset.
No functional changes.
release/7.1
Rémi Denis-Courmont 1 year ago
parent 2f8bf90054
commit d7333ba6f2
  1. 2
      libavutil/riscv/cpu.c

@ -32,6 +32,7 @@ int ff_get_cpu_flags_riscv(void)
{
int ret = 0;
#if HAVE_GETAUXVAL
{
const unsigned long hwcap = getauxval(AT_HWCAP);
if (hwcap & HWCAP_RV('I'))
@ -47,6 +48,7 @@ int ff_get_cpu_flags_riscv(void)
if (hwcap & HWCAP_RV('V'))
ret |= AV_CPU_FLAG_RVV_I32 | AV_CPU_FLAG_RVV_I64
| AV_CPU_FLAG_RVV_F32 | AV_CPU_FLAG_RVV_F64;
}
#endif
#ifdef __riscv_i

Loading…
Cancel
Save