2013-12-10 19:13:32 +00:00
|
|
|
/*
|
2014-01-15 13:41:41 +00:00
|
|
|
* This file is part of FFmpeg.
|
2013-12-10 19:13:32 +00:00
|
|
|
*
|
2014-01-15 13:41:41 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2013-12-10 19:13:32 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2014-01-15 13:41:41 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2013-12-10 19:13:32 +00:00
|
|
|
* 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
|
2014-01-15 13:41:41 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2013-12-10 19:13:32 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVUTIL_AARCH64_CPU_H
|
|
|
|
#define AVUTIL_AARCH64_CPU_H
|
|
|
|
|
|
|
|
#include "libavutil/cpu.h"
|
|
|
|
#include "libavutil/cpu_internal.h"
|
|
|
|
|
2014-04-05 11:46:51 +00:00
|
|
|
#define have_armv8(flags) CPUEXT(flags, ARMV8)
|
2013-12-10 19:13:32 +00:00
|
|
|
#define have_neon(flags) CPUEXT(flags, NEON)
|
|
|
|
#define have_vfp(flags) CPUEXT(flags, VFP)
|
2023-05-25 12:29:02 +00:00
|
|
|
#define have_dotprod(flags) CPUEXT(flags, DOTPROD)
|
|
|
|
#define have_i8mm(flags) CPUEXT(flags, I8MM)
|
2023-10-12 20:31:33 +00:00
|
|
|
#define have_sve(flags) CPUEXT(flags, SVE)
|
|
|
|
#define have_sve2(flags) CPUEXT(flags, SVE2)
|
2013-12-10 19:13:32 +00:00
|
|
|
|
2023-12-04 22:09:07 +00:00
|
|
|
#if HAVE_SVE
|
|
|
|
int ff_aarch64_sve_length(void);
|
|
|
|
#endif
|
|
|
|
|
2013-12-10 19:13:32 +00:00
|
|
|
#endif /* AVUTIL_AARCH64_CPU_H */
|