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:
Diffstat (limited to 'src/arm/mc_init_tmpl.c')
-rw-r--r--src/arm/mc_init_tmpl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arm/mc_init_tmpl.c b/src/arm/mc_init_tmpl.c
index b17b781..f9cb8bc 100644
--- a/src/arm/mc_init_tmpl.c
+++ b/src/arm/mc_init_tmpl.c
@@ -66,6 +66,8 @@ decl_w_mask_fn(BF(dav1d_w_mask_420, neon));
decl_warp8x8_fn(BF(dav1d_warp_affine_8x8, neon));
decl_warp8x8t_fn(BF(dav1d_warp_affine_8x8t, neon));
+decl_emu_edge_fn(BF(dav1d_emu_edge, neon));
+
void bitfn(dav1d_mc_dsp_init_arm)(Dav1dMCDSPContext *const c) {
#define init_mc_fn(type, name, suffix) \
c->mc[type] = BF(dav1d_put_##name, suffix)
@@ -110,4 +112,7 @@ void bitfn(dav1d_mc_dsp_init_arm)(Dav1dMCDSPContext *const c) {
c->warp8x8 = BF(dav1d_warp_affine_8x8, neon);
c->warp8x8t = BF(dav1d_warp_affine_8x8t, neon);
#endif
+#if BITDEPTH == 8 && ARCH_AARCH64
+ c->emu_edge = BF(dav1d_emu_edge, neon);
+#endif
}