aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/aarch64/vp8dsp.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2019-03-14 16:18:42 -0300
committerJames Almer <jamrial@gmail.com>2019-03-14 16:18:42 -0300
commit34a0a9746b2f441db7c45983838a88aa87a33834 (patch)
tree70f80163fbd36b2913d6d87e1a3097f96edbe791 /libavcodec/aarch64/vp8dsp.h
parent2ac399d7faa5ac80088715780769522d1141b549 (diff)
parente39a9212ab37a55b346801c77487d8a47b6f9fe2 (diff)
downloadffmpeg-34a0a9746b2f441db7c45983838a88aa87a33834.tar.gz
Merge commit 'e39a9212ab37a55b346801c77487d8a47b6f9fe2'
* commit 'e39a9212ab37a55b346801c77487d8a47b6f9fe2': aarch64: vp8: Port bilin functions from arm version Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/aarch64/vp8dsp.h')
-rw-r--r--libavcodec/aarch64/vp8dsp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/aarch64/vp8dsp.h b/libavcodec/aarch64/vp8dsp.h
index ea7665dcc8..871fed7a95 100644
--- a/libavcodec/aarch64/vp8dsp.h
+++ b/libavcodec/aarch64/vp8dsp.h
@@ -67,4 +67,9 @@
VP8_MC(epel ## w ## _h4v6, opt); \
VP8_MC(epel ## w ## _h6v6, opt)
+#define VP8_BILIN(w, opt) \
+ VP8_MC(bilin ## w ## _h, opt); \
+ VP8_MC(bilin ## w ## _v, opt); \
+ VP8_MC(bilin ## w ## _hv, opt)
+
#endif /* AVCODEC_AARCH64_VP8DSP_H */