summaryrefslogtreecommitdiff
path: root/vpx_dsp/vpx_dsp_rtcd_defs.pl
diff options
context:
space:
mode:
authorSai Deng <sdeng@google.com>2018-12-08 18:43:55 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-12-08 18:43:55 +0000
commit0b7e4af7446bd2ed962776010812393d2a3dcf09 (patch)
tree8850b71065374b4695ffede95256f9a260ed02e5 /vpx_dsp/vpx_dsp_rtcd_defs.pl
parent673ebe8d2b1417eadaa769436d14f51de6258e3f (diff)
parentf6a002f2a67579cce9d53a4314f0676228517c12 (diff)
downloadlibvpx-0b7e4af7446bd2ed962776010812393d2a3dcf09.tar
libvpx-0b7e4af7446bd2ed962776010812393d2a3dcf09.tar.gz
libvpx-0b7e4af7446bd2ed962776010812393d2a3dcf09.tar.bz2
libvpx-0b7e4af7446bd2ed962776010812393d2a3dcf09.zip
Merge "Add satd avx2 implementation"
Diffstat (limited to 'vpx_dsp/vpx_dsp_rtcd_defs.pl')
-rw-r--r--vpx_dsp/vpx_dsp_rtcd_defs.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/vpx_dsp/vpx_dsp_rtcd_defs.pl b/vpx_dsp/vpx_dsp_rtcd_defs.pl
index 6dc317630..7e2d922ab 100644
--- a/vpx_dsp/vpx_dsp_rtcd_defs.pl
+++ b/vpx_dsp/vpx_dsp_rtcd_defs.pl
@@ -796,6 +796,9 @@ if (vpx_config("CONFIG_VP9_ENCODER") eq "yes") {
add_proto qw/int vpx_satd/, "const tran_low_t *coeff, int length";
specialize qw/vpx_satd avx2 sse2 neon/;
+
+ add_proto qw/int vpx_highbd_satd/, "const tran_low_t *coeff, int length";
+ specialize qw/vpx_highbd_satd avx2/;
} else {
add_proto qw/void vpx_hadamard_8x8/, "const int16_t *src_diff, ptrdiff_t src_stride, int16_t *coeff";
specialize qw/vpx_hadamard_8x8 sse2 neon msa vsx/, "$ssse3_x86_64";