]> granicus.if.org Git - libvpx/commitdiff
Enable vpx_idct32x32_1024_add_neon for neon as well, not only for neon_asm
authorMartin Storsjo <martin@martin.st>
Thu, 3 Mar 2016 09:55:08 +0000 (11:55 +0200)
committerMartin Storsjo <martin@martin.st>
Fri, 15 Apr 2016 07:25:47 +0000 (10:25 +0300)
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

vpx_dsp/vpx_dsp_rtcd_defs.pl

index 34dd0bc85c4a5a9ad85242f5700a27ea1ae41ae8..57323b5ba78fb55f08be4ef0dd95c321fb815861 100644 (file)
@@ -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/;