blob: f6d87c4ad2af7a2ed351dc5f54d40020439614f0 [file] [log] [blame]
Adrian Grangec7acd6d2012-06-19 12:03:36 -07001/*
2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
James Zern5b756742013-06-17 22:58:40 -070010#include "test/clear_system_state.h"
James Zerneebb6482012-11-27 13:08:05 -080011#include "test/register_state_check.h"
Adrian Grangec7acd6d2012-06-19 12:03:36 -070012#include "third_party/googletest/src/include/gtest/gtest.h"
Yaowu Xuafffa3d2013-09-05 08:45:56 -070013#include "./vpx_config.h"
14#include "./vp8_rtcd.h"
Adrian Grangec7acd6d2012-06-19 12:03:36 -070015#include "vpx/vpx_integer.h"
16#include "vpx_mem/vpx_mem.h"
Adrian Grangec7acd6d2012-06-19 12:03:36 -070017
James Zern25d74e62014-07-16 18:58:53 -070018typedef void (*PostProcFunc)(unsigned char *src_ptr,
19 unsigned char *dst_ptr,
20 int src_pixels_per_line,
21 int dst_pixels_per_line,
22 int cols,
23 unsigned char *flimit,
24 int size);
Adrian Grangec7acd6d2012-06-19 12:03:36 -070025
26namespace {
27
James Zern5221e912014-03-22 14:13:14 -070028class VP8PostProcessingFilterTest
James Zern25d74e62014-07-16 18:58:53 -070029 : public ::testing::TestWithParam<PostProcFunc> {
James Zern5b756742013-06-17 22:58:40 -070030 public:
31 virtual void TearDown() {
32 libvpx_test::ClearSystemState();
33 }
34};
Adrian Grangec7acd6d2012-06-19 12:03:36 -070035
36// Test routine for the VP8 post-processing function
Yunqing Wang4c53bac2012-09-28 10:13:07 -070037// vp8_post_proc_down_and_across_mb_row_c.
Adrian Grangec7acd6d2012-06-19 12:03:36 -070038
James Zern5221e912014-03-22 14:13:14 -070039TEST_P(VP8PostProcessingFilterTest, FilterOutputCheck) {
Adrian Grangec7acd6d2012-06-19 12:03:36 -070040 // Size of the underlying data block that will be filtered.
41 const int block_width = 16;
42 const int block_height = 16;
43
44 // 5-tap filter needs 2 padding rows above and below the block in the input.
45 const int input_width = block_width;
46 const int input_height = block_height + 4;
47 const int input_stride = input_width;
48 const int input_size = input_width * input_height;
49
50 // Filter extends output block by 8 samples at left and right edges.
51 const int output_width = block_width + 16;
52 const int output_height = block_height;
53 const int output_stride = output_width;
54 const int output_size = output_width * output_height;
55
56 uint8_t *const src_image =
57 reinterpret_cast<uint8_t*>(vpx_calloc(input_size, 1));
58 uint8_t *const dst_image =
59 reinterpret_cast<uint8_t*>(vpx_calloc(output_size, 1));
60
61 // Pointers to top-left pixel of block in the input and output images.
62 uint8_t *const src_image_ptr = src_image + (input_stride << 1);
63 uint8_t *const dst_image_ptr = dst_image + 8;
Yaowu Xuafffa3d2013-09-05 08:45:56 -070064 uint8_t *const flimits =
65 reinterpret_cast<uint8_t *>(vpx_memalign(16, block_width));
James Zernf58011a2015-04-23 20:47:40 -070066 (void)memset(flimits, 255, block_width);
Adrian Grangec7acd6d2012-06-19 12:03:36 -070067
68 // Initialize pixels in the input:
69 // block pixels to value 1,
70 // border pixels to value 10.
James Zernf58011a2015-04-23 20:47:40 -070071 (void)memset(src_image, 10, input_size);
Adrian Grangec7acd6d2012-06-19 12:03:36 -070072 uint8_t *pixel_ptr = src_image_ptr;
73 for (int i = 0; i < block_height; ++i) {
74 for (int j = 0; j < block_width; ++j) {
75 pixel_ptr[j] = 1;
76 }
77 pixel_ptr += input_stride;
78 }
79
80 // Initialize pixels in the output to 99.
James Zernf58011a2015-04-23 20:47:40 -070081 (void)memset(dst_image, 99, output_size);
Adrian Grangec7acd6d2012-06-19 12:03:36 -070082
James Zern29e1b1a2014-07-09 21:02:02 -070083 ASM_REGISTER_STATE_CHECK(
84 GetParam()(src_image_ptr, dst_image_ptr, input_stride,
85 output_stride, block_width, flimits, 16));
Adrian Grangec7acd6d2012-06-19 12:03:36 -070086
87 static const uint8_t expected_data[block_height] = {
Yunqing Wang4c53bac2012-09-28 10:13:07 -070088 4, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4
Adrian Grangec7acd6d2012-06-19 12:03:36 -070089 };
90
Yunqing Wang4c53bac2012-09-28 10:13:07 -070091 pixel_ptr = dst_image_ptr;
Adrian Grangec7acd6d2012-06-19 12:03:36 -070092 for (int i = 0; i < block_height; ++i) {
93 for (int j = 0; j < block_width; ++j) {
94 EXPECT_EQ(expected_data[i], pixel_ptr[j])
James Zern5221e912014-03-22 14:13:14 -070095 << "VP8PostProcessingFilterTest failed with invalid filter output";
Adrian Grangec7acd6d2012-06-19 12:03:36 -070096 }
97 pixel_ptr += output_stride;
98 }
99
100 vpx_free(src_image);
101 vpx_free(dst_image);
Yunqing Wang4c53bac2012-09-28 10:13:07 -0700102 vpx_free(flimits);
Adrian Grangec7acd6d2012-06-19 12:03:36 -0700103};
104
James Zern5221e912014-03-22 14:13:14 -0700105INSTANTIATE_TEST_CASE_P(C, VP8PostProcessingFilterTest,
Yunqing Wang4c53bac2012-09-28 10:13:07 -0700106 ::testing::Values(vp8_post_proc_down_and_across_mb_row_c));
Adrian Grangec7acd6d2012-06-19 12:03:36 -0700107
108#if HAVE_SSE2
James Zern5221e912014-03-22 14:13:14 -0700109INSTANTIATE_TEST_CASE_P(SSE2, VP8PostProcessingFilterTest,
Yunqing Wang4c53bac2012-09-28 10:13:07 -0700110 ::testing::Values(vp8_post_proc_down_and_across_mb_row_sse2));
Adrian Grangec7acd6d2012-06-19 12:03:36 -0700111#endif
112
113} // namespace