summaryrefslogtreecommitdiff
path: root/thirdparty/libwebp/src/dsp/cost.c
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-03-04 13:02:20 +0100
committerRémi Verschelde <rverschelde@gmail.com>2019-03-04 13:13:33 +0100
commit93f6a065f8e0e083582890a245b7dcc3cd8c7ef6 (patch)
tree9682b2cf1b763dc9f62ab6d4fdbf75a007afe22e /thirdparty/libwebp/src/dsp/cost.c
parent2bc981948d254f45a0268cfc26eb0010f00b984c (diff)
libwebp: Sync with upstream 1.0.2
Diffstat (limited to 'thirdparty/libwebp/src/dsp/cost.c')
-rw-r--r--thirdparty/libwebp/src/dsp/cost.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/thirdparty/libwebp/src/dsp/cost.c b/thirdparty/libwebp/src/dsp/cost.c
index 634ccc2085..cc681cdd4b 100644
--- a/thirdparty/libwebp/src/dsp/cost.c
+++ b/thirdparty/libwebp/src/dsp/cost.c
@@ -377,6 +377,7 @@ VP8SetResidualCoeffsFunc VP8SetResidualCoeffs;
extern void VP8EncDspCostInitMIPS32(void);
extern void VP8EncDspCostInitMIPSdspR2(void);
extern void VP8EncDspCostInitSSE2(void);
+extern void VP8EncDspCostInitNEON(void);
WEBP_DSP_INIT_FUNC(VP8EncDspCostInit) {
VP8GetResidualCost = GetResidualCost_C;
@@ -399,6 +400,11 @@ WEBP_DSP_INIT_FUNC(VP8EncDspCostInit) {
VP8EncDspCostInitSSE2();
}
#endif
+#if defined(WEBP_USE_NEON)
+ if (VP8GetCPUInfo(kNEON)) {
+ VP8EncDspCostInitNEON();
+ }
+#endif
}
}