2012-02-21 17:57:14 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
2013-03-12 19:24:04 +01:00
|
|
|
#include "./vpx_config.h"
|
|
|
|
#include "./vp8_rtcd.h"
|
2013-06-18 07:58:40 +02:00
|
|
|
#include "test/clear_system_state.h"
|
2012-11-27 22:08:05 +01:00
|
|
|
#include "test/register_state_check.h"
|
2012-05-17 01:25:51 +02:00
|
|
|
#include "third_party/googletest/src/include/gtest/gtest.h"
|
2012-02-21 17:57:14 +01:00
|
|
|
|
2013-09-10 07:20:41 +02:00
|
|
|
#include "vpx/vpx_integer.h"
|
|
|
|
|
2014-07-17 03:57:11 +02:00
|
|
|
typedef void (*IdctFunc)(int16_t *input, unsigned char *pred_ptr,
|
|
|
|
int pred_stride, unsigned char *dst_ptr,
|
|
|
|
int dst_stride);
|
2012-05-17 01:25:51 +02:00
|
|
|
namespace {
|
2014-07-17 03:57:11 +02:00
|
|
|
class IDCTTest : public ::testing::TestWithParam<IdctFunc> {
|
2013-07-19 00:42:06 +02:00
|
|
|
protected:
|
|
|
|
virtual void SetUp() {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
UUT = GetParam();
|
|
|
|
memset(input, 0, sizeof(input));
|
|
|
|
/* Set up guard blocks */
|
|
|
|
for (i = 0; i < 256; i++) output[i] = ((i & 0xF) < 4 && (i < 64)) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void TearDown() { libvpx_test::ClearSystemState(); }
|
|
|
|
|
2014-07-17 03:57:11 +02:00
|
|
|
IdctFunc UUT;
|
2013-09-05 17:45:56 +02:00
|
|
|
int16_t input[16];
|
2013-07-19 00:42:06 +02:00
|
|
|
unsigned char output[256];
|
|
|
|
unsigned char predict[256];
|
2012-05-17 01:25:51 +02:00
|
|
|
};
|
|
|
|
|
2013-03-12 19:24:04 +01:00
|
|
|
TEST_P(IDCTTest, TestGuardBlocks) {
|
2013-07-19 00:42:06 +02:00
|
|
|
int i;
|
2012-05-17 01:25:51 +02:00
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if ((i & 0xF) < 4 && i < 64)
|
|
|
|
EXPECT_EQ(0, output[i]) << i;
|
|
|
|
else
|
|
|
|
EXPECT_EQ(255, output[i]);
|
2012-05-17 01:25:51 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 19:24:04 +01:00
|
|
|
TEST_P(IDCTTest, TestAllZeros) {
|
2013-07-19 00:42:06 +02:00
|
|
|
int i;
|
2012-05-17 01:25:51 +02:00
|
|
|
|
2014-07-10 06:02:02 +02:00
|
|
|
ASM_REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
|
2012-05-17 01:25:51 +02:00
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if ((i & 0xF) < 4 && i < 64)
|
|
|
|
EXPECT_EQ(0, output[i]) << "i==" << i;
|
|
|
|
else
|
|
|
|
EXPECT_EQ(255, output[i]) << "i==" << i;
|
2012-05-17 01:25:51 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 19:24:04 +01:00
|
|
|
TEST_P(IDCTTest, TestAllOnes) {
|
2013-07-19 00:42:06 +02:00
|
|
|
int i;
|
2012-02-21 17:57:14 +01:00
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
input[0] = 4;
|
2014-07-10 06:02:02 +02:00
|
|
|
ASM_REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
|
2012-02-21 17:57:14 +01:00
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if ((i & 0xF) < 4 && i < 64)
|
|
|
|
EXPECT_EQ(1, output[i]) << "i==" << i;
|
|
|
|
else
|
|
|
|
EXPECT_EQ(255, output[i]) << "i==" << i;
|
2012-05-17 01:25:51 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 19:24:04 +01:00
|
|
|
TEST_P(IDCTTest, TestAddOne) {
|
2013-07-19 00:42:06 +02:00
|
|
|
int i;
|
2012-05-17 01:25:51 +02:00
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
for (i = 0; i < 256; i++) predict[i] = i;
|
|
|
|
input[0] = 4;
|
2014-07-10 06:02:02 +02:00
|
|
|
ASM_REGISTER_STATE_CHECK(UUT(input, predict, 16, output, 16));
|
2012-05-17 01:25:51 +02:00
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if ((i & 0xF) < 4 && i < 64)
|
|
|
|
EXPECT_EQ(i + 1, output[i]) << "i==" << i;
|
|
|
|
else
|
|
|
|
EXPECT_EQ(255, output[i]) << "i==" << i;
|
2012-05-17 01:25:51 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 19:24:04 +01:00
|
|
|
TEST_P(IDCTTest, TestWithData) {
|
2013-07-19 00:42:06 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++) input[i] = i;
|
|
|
|
|
2014-07-10 06:02:02 +02:00
|
|
|
ASM_REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
|
2013-07-19 00:42:06 +02:00
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
if ((i & 0xF) > 3 || i > 63)
|
|
|
|
EXPECT_EQ(255, output[i]) << "i==" << i;
|
|
|
|
else if (i == 0)
|
|
|
|
EXPECT_EQ(11, output[i]) << "i==" << i;
|
|
|
|
else if (i == 34)
|
|
|
|
EXPECT_EQ(1, output[i]) << "i==" << i;
|
|
|
|
else if (i == 2 || i == 17 || i == 32)
|
|
|
|
EXPECT_EQ(3, output[i]) << "i==" << i;
|
|
|
|
else
|
|
|
|
EXPECT_EQ(0, output[i]) << "i==" << i;
|
2012-05-17 01:25:51 +02:00
|
|
|
}
|
|
|
|
|
2013-07-19 00:42:06 +02:00
|
|
|
INSTANTIATE_TEST_CASE_P(C, IDCTTest, ::testing::Values(vp8_short_idct4x4llm_c));
|
2012-05-17 01:25:51 +02:00
|
|
|
#if HAVE_MMX
|
|
|
|
INSTANTIATE_TEST_CASE_P(MMX, IDCTTest,
|
|
|
|
::testing::Values(vp8_short_idct4x4llm_mmx));
|
|
|
|
#endif
|
2012-02-21 17:57:14 +01:00
|
|
|
}
|