2014-01-31 12:35:37 +00:00
|
|
|
#include "greatest/greatest.h"
|
2013-10-09 12:31:27 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
#include "src/picture.h"
|
2013-10-09 12:31:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// EXTERNAL FUNCTIONS
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// DEFINES
|
2013-10-11 12:19:21 +00:00
|
|
|
#define TEST_SAD(X, Y) calc_sad(g_pic, g_ref, 0, 0, (X), (Y), 8, 8)
|
2013-10-09 12:31:27 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// GLOBALS
|
|
|
|
const uint8_t ref_data[64] = {
|
|
|
|
1,2,2,2,2,2,2,3,
|
|
|
|
4,5,5,5,5,5,5,6,
|
|
|
|
4,5,5,5,5,5,5,6,
|
|
|
|
4,5,5,5,5,5,5,6,
|
|
|
|
4,5,5,5,5,5,5,6,
|
|
|
|
4,5,5,5,5,5,5,6,
|
|
|
|
4,5,5,5,5,5,5,6,
|
|
|
|
7,8,8,8,8,8,8,9
|
|
|
|
};
|
|
|
|
|
|
|
|
const uint8_t pic_data[64] = {
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1,
|
|
|
|
1,1,1,1,1,1,1,1
|
|
|
|
};
|
|
|
|
|
|
|
|
picture *g_pic = 0;
|
|
|
|
picture *g_ref = 0;
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// SETUP, TEARDOWN AND HELPER FUNCTIONS
|
2014-01-31 12:35:37 +00:00
|
|
|
void sad_setup(void *environment)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2013-10-10 16:09:44 +00:00
|
|
|
unsigned i;
|
2013-10-09 12:31:27 +00:00
|
|
|
g_pic = picture_init(8, 8, 1, 1);
|
2013-10-10 16:09:44 +00:00
|
|
|
for (i = 0; i < 64; ++i) {
|
|
|
|
g_pic->y_data[i] = pic_data[i] + 48;
|
|
|
|
}
|
2013-10-09 12:31:27 +00:00
|
|
|
|
|
|
|
g_ref = picture_init(8, 8, 1, 1);
|
2013-10-10 16:09:44 +00:00
|
|
|
for (i = 0; i < 64; ++i) {
|
|
|
|
g_ref->y_data[i] = ref_data[i] + 48;
|
|
|
|
}
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
void sad_teardown(void *environment)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
|
|
|
free(g_pic); g_pic = 0;
|
|
|
|
free(g_ref); g_ref = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-10-11 11:08:56 +00:00
|
|
|
// OVERLAPPING BOUNDARY TESTS
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_topleft(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
1*(4*4) + (2+4)*(4*4) + 5*(4*4) - 64,
|
|
|
|
TEST_SAD(-3, -3));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_top(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
(1+3)*4 + 2*(6*4) + (4+6)*4 + 5*(6*4) - 64,
|
|
|
|
TEST_SAD(0, -3));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_topright(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
3*(4*4) + (2+6)*(4*4) + 5*(4*4) - 64,
|
|
|
|
TEST_SAD(3, -3));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_left(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
(1+7)*4 + 4*(6*4) + (2+8)*4 + 5*(6*4) - 64,
|
|
|
|
TEST_SAD(-3, 0));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_no_offset(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
(1+3+7+9) + (2+4+6+8)*6 + 5*(6*6) - 64,
|
2013-10-09 12:31:27 +00:00
|
|
|
TEST_SAD(0, 0));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_right(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
(3+9)*4 + 6*(4*6) + (2+8)*4 + 5*(6*4) - 64,
|
|
|
|
TEST_SAD(3, 0));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_bottomleft(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
7*(4*4) + (4+8)*(4*4) + 5*(4*4) - 64,
|
|
|
|
TEST_SAD(-3, 3));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_bottom(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
(7+9)*4 + 8*(6*4) + (4+6)*4 + 5*(6*4) - 64,
|
|
|
|
TEST_SAD(0, 3));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_bottomright(void)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-10 12:16:14 +00:00
|
|
|
9*(4*4) + (6+8)*(4*4) + 5*(4*4) - 64,
|
2013-10-11 09:38:14 +00:00
|
|
|
TEST_SAD(3, 3));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 11:08:56 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// OUT OF FRAME TESTS
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_topleft_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
1*(8*8) - 64,
|
|
|
|
TEST_SAD(-8, -8));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_top_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
(1+3)*8 + 2*(6*8) - 64,
|
|
|
|
TEST_SAD(0, -8));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_topright_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
3*(8*8) - 64,
|
|
|
|
TEST_SAD(8, -8));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_left_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
(1+7)*8 + 4*(6*8) - 64,
|
|
|
|
TEST_SAD(-8, 0));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_right_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
(3+9)*8 + 6*(6*8) - 64,
|
|
|
|
TEST_SAD(8, 0));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_bottomleft_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
7*(8*8) - 64,
|
|
|
|
TEST_SAD(-8, 8));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_bottom_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
(7+9)*8 + 8*(6*8) - 64,
|
|
|
|
TEST_SAD(0, 8));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
TEST test_bottomright_out(void)
|
2013-10-11 11:08:56 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
ASSERT_EQ(
|
2013-10-11 11:08:56 +00:00
|
|
|
9*(8*8) - 64,
|
|
|
|
TEST_SAD(8, 8));
|
2014-01-31 12:35:37 +00:00
|
|
|
PASS();
|
2013-10-11 11:08:56 +00:00
|
|
|
}
|
|
|
|
|
2013-10-09 12:31:27 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// TEST FIXTURES
|
2014-01-31 12:35:37 +00:00
|
|
|
SUITE(sad_tests)
|
2013-10-09 12:31:27 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
//SET_SETUP(sad_setup);
|
|
|
|
//SET_TEARDOWN(sad_teardown);
|
2013-10-11 11:08:56 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
sad_setup(0);
|
|
|
|
|
2013-10-11 11:08:56 +00:00
|
|
|
// Tests for movement vectors that overlap frame.
|
2014-01-31 12:35:37 +00:00
|
|
|
RUN_TEST(test_topleft);
|
|
|
|
RUN_TEST(test_top);
|
|
|
|
RUN_TEST(test_topright);
|
2013-10-09 12:31:27 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
RUN_TEST(test_left);
|
|
|
|
RUN_TEST(test_no_offset);
|
|
|
|
RUN_TEST(test_right);
|
2013-10-09 12:31:27 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
RUN_TEST(test_bottomleft);
|
|
|
|
RUN_TEST(test_bottom);
|
|
|
|
RUN_TEST(test_bottomright);
|
2013-10-09 12:31:27 +00:00
|
|
|
|
2013-10-11 11:08:56 +00:00
|
|
|
// Tests for movement vectors that are outside the frame.
|
2014-01-31 12:35:37 +00:00
|
|
|
RUN_TEST(test_topleft_out);
|
|
|
|
RUN_TEST(test_top_out);
|
|
|
|
RUN_TEST(test_topright_out);
|
2013-10-11 11:08:56 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
RUN_TEST(test_left_out);
|
|
|
|
RUN_TEST(test_right_out);
|
2013-10-11 11:08:56 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
RUN_TEST(test_bottomleft_out);
|
|
|
|
RUN_TEST(test_bottom_out);
|
|
|
|
RUN_TEST(test_bottomright_out);
|
2013-10-11 11:08:56 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
sad_setup(0);
|
2013-10-09 12:31:27 +00:00
|
|
|
}
|