Spaces:
Runtime error
Runtime error
/* | |
* Copyright © 2022 Rémi Denis-Courmont. | |
* | |
* This file is part of FFmpeg. | |
* | |
* FFmpeg is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation; either | |
* version 2.1 of the License, or (at your option) any later version. | |
* | |
* FFmpeg is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
* Lesser General Public License for more details. | |
* | |
* You should have received a copy of the GNU Lesser General Public | |
* License along with FFmpeg; if not, write to the Free Software | |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
*/ | |
int ff_get_cpu_flags_riscv(void) | |
{ | |
int ret = 0; | |
const unsigned long hwcap = getauxval(AT_HWCAP); | |
if (hwcap & HWCAP_RV('I')) | |
ret |= AV_CPU_FLAG_RVI; | |
if (hwcap & HWCAP_RV('F')) | |
ret |= AV_CPU_FLAG_RVF; | |
if (hwcap & HWCAP_RV('D')) | |
ret |= AV_CPU_FLAG_RVD; | |
if (hwcap & HWCAP_RV('B')) | |
ret |= AV_CPU_FLAG_RVB_BASIC; | |
/* The V extension implies all Zve* functional subsets */ | |
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; | |
ret |= AV_CPU_FLAG_RVI; | |
ret |= AV_CPU_FLAG_RVF; | |
ret |= AV_CPU_FLAG_RVD; | |
ret |= AV_CPU_FLAG_RVB_BASIC; | |
/* If RV-V is enabled statically at compile-time, check the details. */ | |
ret |= AV_CPU_FLAG_RVV_I32; | |
ret |= AV_CPU_FLAG_RVV_I64; | |
ret |= AV_CPU_FLAG_RVV_F32; | |
ret |= AV_CPU_FLAG_RVV_F64; | |
return ret; | |
} | |