| Index: source/libvpx/test/idct8x8_test.cc
|
| diff --git a/source/libvpx/test/idct8x8_test.cc b/source/libvpx/test/idct8x8_test.cc
|
| index 1a1a2344ef34dba8e862316c52734ae2f80c7b23..987ba7536fcd95a303d7ad783f6dc16ff351c127 100644
|
| --- a/source/libvpx/test/idct8x8_test.cc
|
| +++ b/source/libvpx/test/idct8x8_test.cc
|
| @@ -124,7 +124,7 @@ TEST(VP9Idct8x8Test, AccuracyCheck) {
|
| reference_dct_2d(input, output_r);
|
| for (int j = 0; j < 64; ++j)
|
| coeff[j] = round(output_r[j]);
|
| - vp9_idct8x8_64_add_c(coeff, dst, 8);
|
| + vpx_idct8x8_64_add_c(coeff, dst, 8);
|
| for (int j = 0; j < 64; ++j) {
|
| const int diff = dst[j] - src[j];
|
| const int error = diff * diff;
|
|
|