| Index: source/libvpx/test/vp9_subtract_test.cc
|
| ===================================================================
|
| --- source/libvpx/test/vp9_subtract_test.cc (revision 219822)
|
| +++ source/libvpx/test/vp9_subtract_test.cc (working copy)
|
| @@ -39,8 +39,8 @@
|
| ACMRandom rnd(ACMRandom::DeterministicSeed());
|
|
|
| // FIXME(rbultje) split in its own file
|
| - for (BLOCK_SIZE_TYPE bsize = BLOCK_SIZE_AB4X4; bsize < BLOCK_SIZE_TYPES;
|
| - bsize = static_cast<BLOCK_SIZE_TYPE>(static_cast<int>(bsize) + 1)) {
|
| + for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
|
| + bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
|
| const int block_width = 4 << b_width_log2(bsize);
|
| const int block_height = 4 << b_height_log2(bsize);
|
| int16_t *diff = reinterpret_cast<int16_t *>(
|
| @@ -93,9 +93,8 @@
|
| INSTANTIATE_TEST_CASE_P(C, VP9SubtractBlockTest,
|
| ::testing::Values(vp9_subtract_block_c));
|
|
|
| -#if HAVE_SSE2
|
| +#if HAVE_SSE2 && CONFIG_USE_X86INC
|
| INSTANTIATE_TEST_CASE_P(SSE2, VP9SubtractBlockTest,
|
| ::testing::Values(vp9_subtract_block_sse2));
|
| #endif
|
| -
|
| } // namespace vp9
|
|
|