зеркало из https://github.com/mozilla/gecko-dev.git
118 строки
3.6 KiB
C++
118 строки
3.6 KiB
C++
/*
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
|
*
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
|
*/
|
|
|
|
#ifndef AOM_TEST_AV1_CONVOLVE_2D_TEST_UTIL_H_
|
|
#define AOM_TEST_AV1_CONVOLVE_2D_TEST_UTIL_H_
|
|
|
|
#include "config/av1_rtcd.h"
|
|
#include "config/aom_dsp_rtcd.h"
|
|
|
|
#include "third_party/googletest/src/googletest/include/gtest/gtest.h"
|
|
#include "test/acm_random.h"
|
|
#include "test/util.h"
|
|
|
|
#include "test/clear_system_state.h"
|
|
#include "test/register_state_check.h"
|
|
|
|
namespace libaom_test {
|
|
|
|
namespace AV1Convolve2D {
|
|
|
|
typedef void (*convolve_2d_func)(const uint8_t *src, int src_stride,
|
|
uint8_t *dst, int dst_stride, int w, int h,
|
|
const InterpFilterParams *filter_params_x,
|
|
const InterpFilterParams *filter_params_y,
|
|
const int subpel_x_q4, const int subpel_y_q4,
|
|
ConvolveParams *conv_params);
|
|
|
|
typedef ::testing::tuple<convolve_2d_func, int, int, BLOCK_SIZE>
|
|
Convolve2DParam;
|
|
|
|
::testing::internal::ParamGenerator<Convolve2DParam> BuildParams(
|
|
convolve_2d_func filter, int subx_exist, int suby_exist);
|
|
|
|
class AV1Convolve2DSrTest : public ::testing::TestWithParam<Convolve2DParam> {
|
|
public:
|
|
virtual ~AV1Convolve2DSrTest();
|
|
virtual void SetUp();
|
|
|
|
virtual void TearDown();
|
|
|
|
protected:
|
|
void RunCheckOutput(convolve_2d_func test_impl);
|
|
void RunSpeedTest(convolve_2d_func test_impl);
|
|
|
|
libaom_test::ACMRandom rnd_;
|
|
};
|
|
|
|
class AV1JntConvolve2DTest : public ::testing::TestWithParam<Convolve2DParam> {
|
|
public:
|
|
virtual ~AV1JntConvolve2DTest();
|
|
virtual void SetUp();
|
|
|
|
virtual void TearDown();
|
|
|
|
protected:
|
|
void RunCheckOutput(convolve_2d_func test_impl);
|
|
void RunSpeedTest(convolve_2d_func test_impl);
|
|
|
|
libaom_test::ACMRandom rnd_;
|
|
};
|
|
} // namespace AV1Convolve2D
|
|
|
|
namespace AV1HighbdConvolve2D {
|
|
typedef void (*highbd_convolve_2d_func)(
|
|
const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w,
|
|
int h, const InterpFilterParams *filter_params_x,
|
|
const InterpFilterParams *filter_params_y, const int subpel_x_q4,
|
|
const int subpel_y_q4, ConvolveParams *conv_params, int bd);
|
|
|
|
typedef ::testing::tuple<int, highbd_convolve_2d_func, int, int, BLOCK_SIZE>
|
|
HighbdConvolve2DParam;
|
|
|
|
::testing::internal::ParamGenerator<HighbdConvolve2DParam> BuildParams(
|
|
highbd_convolve_2d_func filter, int subx_exist, int suby_exist);
|
|
|
|
class AV1HighbdConvolve2DSrTest
|
|
: public ::testing::TestWithParam<HighbdConvolve2DParam> {
|
|
public:
|
|
virtual ~AV1HighbdConvolve2DSrTest();
|
|
virtual void SetUp();
|
|
|
|
virtual void TearDown();
|
|
|
|
protected:
|
|
void RunCheckOutput(highbd_convolve_2d_func test_impl);
|
|
void RunSpeedTest(highbd_convolve_2d_func test_impl);
|
|
|
|
libaom_test::ACMRandom rnd_;
|
|
};
|
|
|
|
class AV1HighbdJntConvolve2DTest
|
|
: public ::testing::TestWithParam<HighbdConvolve2DParam> {
|
|
public:
|
|
virtual ~AV1HighbdJntConvolve2DTest();
|
|
virtual void SetUp();
|
|
|
|
virtual void TearDown();
|
|
|
|
protected:
|
|
void RunCheckOutput(highbd_convolve_2d_func test_impl);
|
|
void RunSpeedTest(highbd_convolve_2d_func test_impl);
|
|
|
|
libaom_test::ACMRandom rnd_;
|
|
};
|
|
} // namespace AV1HighbdConvolve2D
|
|
|
|
} // namespace libaom_test
|
|
|
|
#endif // AOM_TEST_AV1_CONVOLVE_2D_TEST_UTIL_H_
|