From: Jingning Han Date: Thu, 12 Jun 2014 18:59:52 +0000 (-0700) Subject: Merge "Fast computation path for forward transform and quantization" X-Git-Tag: v1.4.0~1415 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5ae43318e5910e9ed96219aa6345915295bda8e;p=libvpx Merge "Fast computation path for forward transform and quantization" --- d5ae43318e5910e9ed96219aa6345915295bda8e diff --cc vp9/common/vp9_rtcd_defs.pl index 06ed47079,c2df83ed6..66a3956a1 --- a/vp9/common/vp9_rtcd_defs.pl +++ b/vp9/common/vp9_rtcd_defs.pl @@@ -750,9 -756,15 +756,15 @@@ specialize qw/vp9_fdct8x8_1 sse2/ add_proto qw/void vp9_fdct8x8/, "const int16_t *input, int16_t *output, int stride"; specialize qw/vp9_fdct8x8 sse2 avx2/, "$ssse3_x86_64"; + add_proto qw/void vp9_fdct16x16_1/, "const int16_t *input, int16_t *output, int stride"; + specialize qw/vp9_fdct16x16_1 sse2/; + add_proto qw/void vp9_fdct16x16/, "const int16_t *input, int16_t *output, int stride"; -specialize qw/vp9_fdct16x16 sse2 avx2/; +specialize qw/vp9_fdct16x16 sse2/; + add_proto qw/void vp9_fdct32x32_1/, "const int16_t *input, int16_t *output, int stride"; + specialize qw/vp9_fdct32x32_1 sse2/; + add_proto qw/void vp9_fdct32x32/, "const int16_t *input, int16_t *output, int stride"; specialize qw/vp9_fdct32x32 sse2 avx2/;