Merge "Fast computation path for forward transform and quantization"
authorJingning Han <jingning@google.com>
Thu, 12 Jun 2014 18:59:52 +0000 (11:59 -0700)
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>
Thu, 12 Jun 2014 18:59:52 +0000 (11:59 -0700)
1  2 
vp9/common/vp9_rtcd_defs.pl
vp9/encoder/vp9_encodeframe.c

@@@ -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/;
  
Simple merge