diff options
Diffstat (limited to 'third_party/aom/test/clpf_test.cc')
-rw-r--r-- | third_party/aom/test/clpf_test.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/aom/test/clpf_test.cc b/third_party/aom/test/clpf_test.cc index 2c0f8cf7f..ecb042876 100644 --- a/third_party/aom/test/clpf_test.cc +++ b/third_party/aom/test/clpf_test.cc @@ -17,7 +17,7 @@ #include "./aom_config.h" #include "./av1_rtcd.h" #include "aom_ports/aom_timer.h" -#include "av1/common/od_dering.h" +#include "av1/common/cdef_block.h" #include "test/acm_random.h" #include "test/clear_system_state.h" #include "test/register_state_check.h" @@ -128,22 +128,22 @@ void test_clpf(int w, int h, unsigned int depth, unsigned int iterations, if (boundary & 1) { // Left for (int i = 0; i < size; i++) for (int j = 0; j < xpos; j++) - s[i * size + j] = OD_DERING_VERY_LARGE; + s[i * size + j] = CDEF_VERY_LARGE; } if (boundary & 2) { // Right for (int i = 0; i < size; i++) for (int j = xpos + w; j < size; j++) - s[i * size + j] = OD_DERING_VERY_LARGE; + s[i * size + j] = CDEF_VERY_LARGE; } if (boundary & 4) { // Above for (int i = 0; i < ypos; i++) for (int j = 0; j < size; j++) - s[i * size + j] = OD_DERING_VERY_LARGE; + s[i * size + j] = CDEF_VERY_LARGE; } if (boundary & 8) { // Below for (int i = ypos + h; i < size; i++) for (int j = 0; j < size; j++) - s[i * size + j] = OD_DERING_VERY_LARGE; + s[i * size + j] = CDEF_VERY_LARGE; } } for (strength = depth - 8; strength < depth - 5 && !error; |