| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 #include "test/clear_system_state.h" | 10 #include "test/clear_system_state.h" |
| 11 #include "test/register_state_check.h" | 11 #include "test/register_state_check.h" |
| 12 #include "third_party/googletest/src/include/gtest/gtest.h" | 12 #include "third_party/googletest/src/include/gtest/gtest.h" |
| 13 #include "./vpx_config.h" | 13 #include "./vpx_config.h" |
| 14 #include "./vp8_rtcd.h" | 14 #include "./vp8_rtcd.h" |
| 15 #include "vpx/vpx_integer.h" | 15 #include "vpx/vpx_integer.h" |
| 16 #include "vpx_mem/vpx_mem.h" | 16 #include "vpx_mem/vpx_mem.h" |
| 17 | 17 |
| 18 typedef void (*post_proc_func_t)(unsigned char *src_ptr, | 18 typedef void (*PostProcFunc)(unsigned char *src_ptr, |
| 19 unsigned char *dst_ptr, | 19 unsigned char *dst_ptr, |
| 20 int src_pixels_per_line, | 20 int src_pixels_per_line, |
| 21 int dst_pixels_per_line, | 21 int dst_pixels_per_line, |
| 22 int cols, | 22 int cols, |
| 23 unsigned char *flimit, | 23 unsigned char *flimit, |
| 24 int size); | 24 int size); |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 class VP8PostProcessingFilterTest | 28 class VP8PostProcessingFilterTest |
| 29 : public ::testing::TestWithParam<post_proc_func_t> { | 29 : public ::testing::TestWithParam<PostProcFunc> { |
| 30 public: | 30 public: |
| 31 virtual void TearDown() { | 31 virtual void TearDown() { |
| 32 libvpx_test::ClearSystemState(); | 32 libvpx_test::ClearSystemState(); |
| 33 } | 33 } |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 // Test routine for the VP8 post-processing function | 36 // Test routine for the VP8 post-processing function |
| 37 // vp8_post_proc_down_and_across_mb_row_c. | 37 // vp8_post_proc_down_and_across_mb_row_c. |
| 38 | 38 |
| 39 TEST_P(VP8PostProcessingFilterTest, FilterOutputCheck) { | 39 TEST_P(VP8PostProcessingFilterTest, FilterOutputCheck) { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 INSTANTIATE_TEST_CASE_P(C, VP8PostProcessingFilterTest, | 105 INSTANTIATE_TEST_CASE_P(C, VP8PostProcessingFilterTest, |
| 106 ::testing::Values(vp8_post_proc_down_and_across_mb_row_c)); | 106 ::testing::Values(vp8_post_proc_down_and_across_mb_row_c)); |
| 107 | 107 |
| 108 #if HAVE_SSE2 | 108 #if HAVE_SSE2 |
| 109 INSTANTIATE_TEST_CASE_P(SSE2, VP8PostProcessingFilterTest, | 109 INSTANTIATE_TEST_CASE_P(SSE2, VP8PostProcessingFilterTest, |
| 110 ::testing::Values(vp8_post_proc_down_and_across_mb_row_sse2)); | 110 ::testing::Values(vp8_post_proc_down_and_across_mb_row_sse2)); |
| 111 #endif | 111 #endif |
| 112 | 112 |
| 113 } // namespace | 113 } // namespace |
| OLD | NEW |