Index: source/libvpx/test/dct16x16_test.cc |
=================================================================== |
--- source/libvpx/test/dct16x16_test.cc (revision 282873) |
+++ source/libvpx/test/dct16x16_test.cc (working copy) |
@@ -311,9 +311,9 @@ |
test_input_block[j] = src[j] - dst[j]; |
} |
- REGISTER_STATE_CHECK(RunFwdTxfm(test_input_block, |
- test_temp_block, pitch_)); |
- REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_)); |
+ ASM_REGISTER_STATE_CHECK(RunFwdTxfm(test_input_block, |
+ test_temp_block, pitch_)); |
+ ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_)); |
for (int j = 0; j < kNumCoeffs; ++j) { |
const uint32_t diff = dst[j] - src[j]; |
@@ -344,7 +344,7 @@ |
input_block[j] = rnd.Rand8() - rnd.Rand8(); |
fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_); |
- REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_)); |
+ ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_)); |
// The minimum quant value is 4. |
for (int j = 0; j < kNumCoeffs; ++j) |
@@ -375,8 +375,8 @@ |
} |
fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_); |
- REGISTER_STATE_CHECK(RunFwdTxfm(input_extreme_block, |
- output_block, pitch_)); |
+ ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_extreme_block, |
+ output_block, pitch_)); |
// The minimum quant value is 4. |
for (int j = 0; j < kNumCoeffs; ++j) { |
@@ -421,7 +421,7 @@ |
for (int j = 1; j < kNumCoeffs; ++j) |
output_ref_block[j] = (output_ref_block[j] / ac_thred) * ac_thred; |
inv_txfm_ref(output_ref_block, ref, pitch_, tx_type_); |
- REGISTER_STATE_CHECK(RunInvTxfm(output_ref_block, dst, pitch_)); |
+ ASM_REGISTER_STATE_CHECK(RunInvTxfm(output_ref_block, dst, pitch_)); |
for (int j = 0; j < kNumCoeffs; ++j) |
EXPECT_EQ(ref[j], dst[j]); |
@@ -450,7 +450,7 @@ |
for (int j = 0; j < kNumCoeffs; ++j) |
coeff[j] = round(out_r[j]); |
- REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, 16)); |
+ ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, 16)); |
for (int j = 0; j < kNumCoeffs; ++j) { |
const uint32_t diff = dst[j] - src[j]; |