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