diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-10 20:13:32 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-15 12:05:09 +0100 |
commit | b7b17ed66e199afc7246e642bf3b35c3f8eca217 (patch) | |
tree | 2bd123eca798d0ccfaf4c10cf4e41f5e7a847ed3 /libavutil/cpu_internal.h | |
parent | 1e9265cd8f0821acbeca1db437be1361a3976b85 (diff) | |
download | ffmpeg-b7b17ed66e199afc7246e642bf3b35c3f8eca217.tar.gz |
aarch64: add cpuflags support for NEON and VFP
NEON and VFP are currently mandatory for all ARMv8 profiles. Both are
handled as extensions as far as cpuflags are concerned. This is
consistent with handling x86_64 which always has SSE2, but still
handles it as an extension.
Diffstat (limited to 'libavutil/cpu_internal.h')
-rw-r--r-- | libavutil/cpu_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/cpu_internal.h b/libavutil/cpu_internal.h index 08f6e858db..3bfe8a82d8 100644 --- a/libavutil/cpu_internal.h +++ b/libavutil/cpu_internal.h @@ -26,6 +26,7 @@ #define CPUEXT(flags, cpuext) CPUEXT_SUFFIX(flags, , cpuext) +int ff_get_cpu_flags_aarch64(void); int ff_get_cpu_flags_arm(void); int ff_get_cpu_flags_ppc(void); int ff_get_cpu_flags_x86(void); |