summaryrefslogtreecommitdiff
path: root/vpx_dsp/vpx_dsp_rtcd_defs.pl
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2016-03-03 11:55:08 +0200
committerMartin Storsjo <martin@martin.st>2016-04-15 10:25:47 +0300
commitd8b3e29ee7beea8bb3e89ede2b2562f03689f693 (patch)
tree226c6bac206d0b84eb3248e3e004bd2848aa9ec7 /vpx_dsp/vpx_dsp_rtcd_defs.pl
parentef17fc46f3d55708157f23a0f3fdf4f4e85ab9c1 (diff)
downloadlibvpx-d8b3e29ee7beea8bb3e89ede2b2562f03689f693.tar
libvpx-d8b3e29ee7beea8bb3e89ede2b2562f03689f693.tar.gz
libvpx-d8b3e29ee7beea8bb3e89ede2b2562f03689f693.tar.bz2
libvpx-d8b3e29ee7beea8bb3e89ede2b2562f03689f693.zip
Enable vpx_idct32x32_1024_add_neon for neon as well, not only for neon_asm
This was never hooked up for the 32x32_34 case as the neon_asm version in 3f7c12da, when the intrinsics version was added. Change-Id: Ic7db4ce5850c637315f9fe9e2de93a4f8cf9e320
Diffstat (limited to 'vpx_dsp/vpx_dsp_rtcd_defs.pl')
-rw-r--r--vpx_dsp/vpx_dsp_rtcd_defs.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx_dsp/vpx_dsp_rtcd_defs.pl b/vpx_dsp/vpx_dsp_rtcd_defs.pl
index 34dd0bc85..57323b5ba 100644
--- a/vpx_dsp/vpx_dsp_rtcd_defs.pl
+++ b/vpx_dsp/vpx_dsp_rtcd_defs.pl
@@ -919,9 +919,9 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
$vpx_idct32x32_135_add_msa=vpx_idct32x32_1024_add_msa;
add_proto qw/void vpx_idct32x32_34_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride";
- specialize qw/vpx_idct32x32_34_add sse2 neon_asm dspr2 msa/, "$ssse3_x86_64_x86inc";
+ specialize qw/vpx_idct32x32_34_add sse2 neon dspr2 msa/, "$ssse3_x86_64_x86inc";
# Need to add 34 eob idct32x32 neon implementation.
- $vpx_idct32x32_34_add_neon_asm=vpx_idct32x32_1024_add_neon;
+ $vpx_idct32x32_34_add_neon=vpx_idct32x32_1024_add_neon;
add_proto qw/void vpx_idct32x32_1_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride";
specialize qw/vpx_idct32x32_1_add sse2 neon dspr2 msa/;