Chromium Code Reviews| Index: source/libvpx/vp9/common/vp9_idct.h |
| =================================================================== |
| --- source/libvpx/vp9/common/vp9_idct.h (revision 278778) |
| +++ source/libvpx/vp9/common/vp9_idct.h (working copy) |
| @@ -33,6 +33,9 @@ |
| #define pair_set_epi16(a, b) \ |
| _mm_set_epi16(b, a, b, a, b, a, b, a) |
| +#define dual_set_epi16(a, b) \ |
| + _mm_set_epi16(b, b, b, b, a, a, a, a) |
| + |
| // Constants: |
| // for (int i = 1; i< 32; ++i) |
| // printf("static const int cospi_%d_64 = %.0f;\n", i, |