summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2022-08-02 15:09:40 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2022-08-02 15:09:40 +0000
commit34ee3843e64e1214c67f5301250c6ae5af0dc930 (patch)
tree81b0c0437853c34274573d836b66f517b197accb /vp9/common
parent822bfca8e56e04b5d722ae1320f2a50a4c885ba0 (diff)
parent29db7fe9757549efa8df5cc6f3cff0ece7b4b0d1 (diff)
downloadlibvpx-34ee3843e64e1214c67f5301250c6ae5af0dc930.tar
libvpx-34ee3843e64e1214c67f5301250c6ae5af0dc930.tar.gz
libvpx-34ee3843e64e1214c67f5301250c6ae5af0dc930.tar.bz2
libvpx-34ee3843e64e1214c67f5301250c6ae5af0dc930.zip
Merge "VPX: Add vp9_quantize_fp_32x32_avx2()." into main
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_rtcd_defs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index e6b65c96f..a4d28f0ff 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -132,7 +132,7 @@ add_proto qw/void vp9_quantize_fp/, "const tran_low_t *coeff_ptr, intptr_t n_coe
specialize qw/vp9_quantize_fp neon sse2 avx2 vsx/, "$ssse3_x86_64";
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 vsx/, "$ssse3_x86_64";
+specialize qw/vp9_quantize_fp_32x32 neon avx2 vsx/, "$ssse3_x86_64";
if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize qw/vp9_block_error avx2 sse2/;