summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-09-02 12:09:14 -0700
committerDmitry Kovalev <dkovalev@google.com>2014-09-03 19:02:14 -0700
commit48197f0a70dc4f8bc6d3e4b71ddf98fd549f1b2f (patch)
treede503dfeff29f1323c4f7f7bbec698c0cafcc091 /vp9/common
parentab73dba65f4514beb5036bde0acb89da97189ccf (diff)
downloadlibvpx-48197f0a70dc4f8bc6d3e4b71ddf98fd549f1b2f.tar
libvpx-48197f0a70dc4f8bc6d3e4b71ddf98fd549f1b2f.tar.gz
libvpx-48197f0a70dc4f8bc6d3e4b71ddf98fd549f1b2f.tar.bz2
libvpx-48197f0a70dc4f8bc6d3e4b71ddf98fd549f1b2f.zip
Adding sse2 variant for vp9_mse{8x8, 8x16, 16x8}.
Change-Id: I6786d25ce4f32b8d8912f2d239a45ca15b310c4b
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_rtcd_defs.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index 19a527539..f2a3eef7e 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -693,16 +693,16 @@ add_proto qw/void vp9_sad4x4x4d/, "const uint8_t *src_ptr, int src_stride, cons
specialize qw/vp9_sad4x4x4d sse/;
add_proto qw/unsigned int vp9_mse16x16/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse";
-specialize qw/vp9_mse16x16 avx2/, "$sse2_x86inc";
+specialize qw/vp9_mse16x16 sse2 avx2/;
add_proto qw/unsigned int vp9_mse8x16/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse";
-specialize qw/vp9_mse8x16/;
+specialize qw/vp9_mse8x16 sse2/;
add_proto qw/unsigned int vp9_mse16x8/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse";
-specialize qw/vp9_mse16x8/;
+specialize qw/vp9_mse16x8 sse2/;
add_proto qw/unsigned int vp9_mse8x8/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse";
-specialize qw/vp9_mse8x8/;
+specialize qw/vp9_mse8x8 sse2/;
add_proto qw/unsigned int vp9_get_mb_ss/, "const int16_t *";
specialize qw/vp9_get_mb_ss sse2/;