
Cherry-Picked the following commits: 0defd8f Changed "WebM" to "AOMedia" & "webm" to "aomedia" 54e6676 Replace "VPx" by "AVx" 5082a36 Change "Vpx" to "Avx" 7df44f1 Replace "Vp9" w/ "Av1" 967f722 Remove kVp9CodecId 828f30c Change "Vp8" to "AOM" 030b5ff AUTHORS regenerated 2524cae Add ref-mv experimental flag 016762b Change copyright notice to AOMedia form 81e5526 Replace vp9 w/ av1 9b94565 Add missing files fa8ca9f Change "vp9" to "av1" ec838b7 Convert "vp8" to "aom" 80edfa0 Change "VP9" to "AV1" d1a11fb Change "vp8" to "aom" 7b58251 Point to WebM test data dd1a5c8 Replace "VP8" with "AOM" ff00fc0 Change "VPX" to "AOM" 01dee0b Change "vp10" to "av1" in source code cebe6f0 Convert "vpx" to "aom" 17b0567 rename vp10*.mk to av1_*.mk fe5f8a8 rename files vp10_* to av1_* Change-Id: I6fc3d18eb11fc171e46140c836ad5339cf6c9419
208 lines
6.9 KiB
C++
208 lines
6.9 KiB
C++
/*
|
|
* Copyright (c) 2016 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.
|
|
*/
|
|
|
|
#include "third_party/googletest/src/include/gtest/gtest.h"
|
|
|
|
#include "./av1_rtcd.h"
|
|
#include "./aom_dsp_rtcd.h"
|
|
|
|
#include "test/acm_random.h"
|
|
#include "test/clear_system_state.h"
|
|
#include "test/register_state_check.h"
|
|
#include "test/transform_test_base.h"
|
|
#include "test/util.h"
|
|
#include "aom_ports/mem.h"
|
|
|
|
using libaom_test::ACMRandom;
|
|
|
|
namespace {
|
|
typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
|
|
int tx_type);
|
|
using std::tr1::tuple;
|
|
using libaom_test::FhtFunc;
|
|
typedef tuple<FhtFunc, IhtFunc, int, aom_bit_depth_t, int> Ht4x4Param;
|
|
|
|
void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) {
|
|
av1_fht4x4_c(in, out, stride, tx_type);
|
|
}
|
|
|
|
#if CONFIG_AOM_HIGHBITDEPTH
|
|
typedef void (*IhighbdHtFunc)(const tran_low_t *in, uint8_t *out, int stride,
|
|
int tx_type, int bd);
|
|
typedef void (*HBDFhtFunc)(const int16_t *input, int32_t *output, int stride,
|
|
int tx_type, int bd);
|
|
|
|
// HighbdHt4x4Param argument list:
|
|
// <Target optimized function, tx_type, bit depth>
|
|
typedef tuple<HBDFhtFunc, int, int> HighbdHt4x4Param;
|
|
|
|
void highbe_fht4x4_ref(const int16_t *in, int32_t *out, int stride, int tx_type,
|
|
int bd) {
|
|
av1_fwd_txfm2d_4x4_c(in, out, stride, tx_type, bd);
|
|
}
|
|
#endif // CONFIG_AOM_HIGHBITDEPTH
|
|
|
|
class AV1Trans4x4HT : public libaom_test::TransformTestBase,
|
|
public ::testing::TestWithParam<Ht4x4Param> {
|
|
public:
|
|
virtual ~AV1Trans4x4HT() {}
|
|
|
|
virtual void SetUp() {
|
|
fwd_txfm_ = GET_PARAM(0);
|
|
inv_txfm_ = GET_PARAM(1);
|
|
tx_type_ = GET_PARAM(2);
|
|
pitch_ = 4;
|
|
fwd_txfm_ref = fht4x4_ref;
|
|
bit_depth_ = GET_PARAM(3);
|
|
mask_ = (1 << bit_depth_) - 1;
|
|
num_coeffs_ = GET_PARAM(4);
|
|
}
|
|
virtual void TearDown() { libaom_test::ClearSystemState(); }
|
|
|
|
protected:
|
|
void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) {
|
|
fwd_txfm_(in, out, stride, tx_type_);
|
|
}
|
|
|
|
void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) {
|
|
inv_txfm_(out, dst, stride, tx_type_);
|
|
}
|
|
|
|
FhtFunc fwd_txfm_;
|
|
IhtFunc inv_txfm_;
|
|
};
|
|
|
|
TEST_P(AV1Trans4x4HT, CoeffCheck) { RunCoeffCheck(); }
|
|
|
|
#if CONFIG_AOM_HIGHBITDEPTH
|
|
class AV1HighbdTrans4x4HT : public ::testing::TestWithParam<HighbdHt4x4Param> {
|
|
public:
|
|
virtual ~AV1HighbdTrans4x4HT() {}
|
|
|
|
virtual void SetUp() {
|
|
fwd_txfm_ = GET_PARAM(0);
|
|
fwd_txfm_ref_ = highbe_fht4x4_ref;
|
|
tx_type_ = GET_PARAM(1);
|
|
bit_depth_ = GET_PARAM(2);
|
|
mask_ = (1 << bit_depth_) - 1;
|
|
num_coeffs_ = 16;
|
|
|
|
input_ = reinterpret_cast<int16_t *>(
|
|
aom_memalign(16, sizeof(int16_t) * num_coeffs_));
|
|
output_ = reinterpret_cast<int32_t *>(
|
|
aom_memalign(16, sizeof(int32_t) * num_coeffs_));
|
|
output_ref_ = reinterpret_cast<int32_t *>(
|
|
aom_memalign(16, sizeof(int32_t) * num_coeffs_));
|
|
}
|
|
|
|
virtual void TearDown() {
|
|
aom_free(input_);
|
|
aom_free(output_);
|
|
aom_free(output_ref_);
|
|
libaom_test::ClearSystemState();
|
|
}
|
|
|
|
protected:
|
|
void RunBitexactCheck();
|
|
|
|
private:
|
|
HBDFhtFunc fwd_txfm_;
|
|
HBDFhtFunc fwd_txfm_ref_;
|
|
int tx_type_;
|
|
int bit_depth_;
|
|
int mask_;
|
|
int num_coeffs_;
|
|
int16_t *input_;
|
|
int32_t *output_;
|
|
int32_t *output_ref_;
|
|
};
|
|
|
|
void AV1HighbdTrans4x4HT::RunBitexactCheck() {
|
|
ACMRandom rnd(ACMRandom::DeterministicSeed());
|
|
int i, j;
|
|
const int stride = 4;
|
|
const int num_tests = 1000;
|
|
const int num_coeffs = 16;
|
|
|
|
for (i = 0; i < num_tests; ++i) {
|
|
for (j = 0; j < num_coeffs; ++j) {
|
|
input_[j] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_);
|
|
}
|
|
|
|
fwd_txfm_ref_(input_, output_ref_, stride, tx_type_, bit_depth_);
|
|
fwd_txfm_(input_, output_, stride, tx_type_, bit_depth_);
|
|
|
|
for (j = 0; j < num_coeffs; ++j) {
|
|
EXPECT_EQ(output_[j], output_ref_[j])
|
|
<< "Not bit-exact result at index: " << j << " at test block: " << i;
|
|
}
|
|
}
|
|
}
|
|
|
|
TEST_P(AV1HighbdTrans4x4HT, HighbdCoeffCheck) { RunBitexactCheck(); }
|
|
#endif // CONFIG_AOM_HIGHBITDEPTH
|
|
|
|
using std::tr1::make_tuple;
|
|
|
|
#if HAVE_SSE2
|
|
const Ht4x4Param kArrayHt4x4Param_sse2[] = {
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 0, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 1, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 2, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 3, AOM_BITS_8, 16),
|
|
#if CONFIG_EXT_TX
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 4, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 5, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 6, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 7, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 8, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 10, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 11, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 12, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 13, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 14, AOM_BITS_8, 16),
|
|
make_tuple(&av1_fht4x4_sse2, &av1_iht4x4_16_add_sse2, 15, AOM_BITS_8, 16)
|
|
#endif // CONFIG_EXT_TX
|
|
};
|
|
INSTANTIATE_TEST_CASE_P(SSE2, AV1Trans4x4HT,
|
|
::testing::ValuesIn(kArrayHt4x4Param_sse2));
|
|
#endif // HAVE_SSE2
|
|
|
|
#if HAVE_SSE4_1 && CONFIG_AOM_HIGHBITDEPTH
|
|
const HighbdHt4x4Param kArrayHighbdHt4x4Param[] = {
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 0, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 0, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 1, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 1, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 2, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 2, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 3, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 3, 12),
|
|
#if CONFIG_EXT_TX
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 4, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 4, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 5, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 5, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 6, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 6, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 7, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 7, 12),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 8, 10),
|
|
make_tuple(&av1_fwd_txfm2d_4x4_sse4_1, 8, 12),
|
|
#endif // CONFIG_EXT_TX
|
|
};
|
|
|
|
INSTANTIATE_TEST_CASE_P(SSE4_1, AV1HighbdTrans4x4HT,
|
|
::testing::ValuesIn(kArrayHighbdHt4x4Param));
|
|
|
|
#endif // HAVE_SSE4_1 && CONFIG_AOM_HIGHBITDEPTH
|
|
|
|
} // namespace
|