summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_rtcd_defs.pl
diff options
context:
space:
mode:
authorJohann <johann.koenig@gmail.com>2022-10-01 11:47:05 +0900
committerJohann <johann.koenig@gmail.com>2022-10-17 12:23:24 +0900
commit828d05d4a497e7f5d635a8e5bf35fca790759b13 (patch)
tree5733c292b5179f2726ad680caae827e5e930dd01 /vp9/common/vp9_rtcd_defs.pl
parent79b718abdbbdb6d53f68316cef289c657c9fb02e (diff)
downloadlibvpx-828d05d4a497e7f5d635a8e5bf35fca790759b13.tar
libvpx-828d05d4a497e7f5d635a8e5bf35fca790759b13.tar.gz
libvpx-828d05d4a497e7f5d635a8e5bf35fca790759b13.tar.bz2
libvpx-828d05d4a497e7f5d635a8e5bf35fca790759b13.zip
vp9 quantize: rewrite ssse3 in intrinsics
Change-Id: I3177251a5935453a23a23c39ea5f6fd41254775e
Diffstat (limited to 'vp9/common/vp9_rtcd_defs.pl')
-rw-r--r--vp9/common/vp9_rtcd_defs.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index 4290c2380..871e4d0a3 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -129,10 +129,10 @@ add_proto qw/int64_t vp9_block_error/, "const tran_low_t *coeff, const tran_low_
add_proto qw/int64_t vp9_block_error_fp/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, int block_size";
add_proto qw/void vp9_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
-specialize qw/vp9_quantize_fp neon sse2 avx2 vsx/, "$ssse3_x86_64";
+specialize qw/vp9_quantize_fp neon sse2 ssse3 avx2 vsx/;
add_proto qw/void vp9_quantize_fp_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan";
-specialize qw/vp9_quantize_fp_32x32 neon avx2 vsx/, "$ssse3_x86_64";
+specialize qw/vp9_quantize_fp_32x32 neon ssse3 avx2 vsx/;
if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize qw/vp9_block_error avx2 sse2/;