Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2019-02-04 17:00:27 +0300
committerMartin Storsjö <martin@martin.st>2019-02-11 00:11:03 +0300
commit0d18b15aa084d180aa41f3c4b2cff7bf8cb68fdc (patch)
tree0b59a7bec4dc1f68ce204944b01f50fa7dbe1204 /src/cdef.h
parent109ee5139931072df0a37021c61e32b3f8ab1172 (diff)
arm64: cdef: NEON optimized cdef filter function
Speedup vs C code: Cortex A53 A72 A73 cdef_filter_4x4_8bpc_neon: 4.62 4.48 4.76 cdef_filter_4x8_8bpc_neon: 4.82 4.80 5.08 cdef_filter_8x8_8bpc_neon: 5.29 5.33 5.79
Diffstat (limited to 'src/cdef.h')
-rw-r--r--src/cdef.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cdef.h b/src/cdef.h
index 5b07df6..19319f6 100644
--- a/src/cdef.h
+++ b/src/cdef.h
@@ -66,6 +66,7 @@ typedef struct Dav1dCdefDSPContext {
} Dav1dCdefDSPContext;
bitfn_decls(void dav1d_cdef_dsp_init, Dav1dCdefDSPContext *c);
+bitfn_decls(void dav1d_cdef_dsp_init_arm, Dav1dCdefDSPContext *c);
bitfn_decls(void dav1d_cdef_dsp_init_x86, Dav1dCdefDSPContext *c);
#endif /* __DAV1D_SRC_CDEF_H__ */