mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
Issue #1937 - Part 2: Update libaom source.
This commit is contained in:
parent
d09a5eeca2
commit
ecb7ec7377
948 changed files with 244949 additions and 88095 deletions
|
|
@ -20,7 +20,6 @@
|
|||
#include "config/av1_rtcd.h"
|
||||
#include "config/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"
|
||||
|
|
@ -72,7 +71,7 @@ class Trans4x4FDCT : public libaom_test::TransformTestBase<OutputType>,
|
|||
TxfmBaseOutType::mask_ = (1 << TxfmBaseOutType::bit_depth_) - 1;
|
||||
TxfmBaseOutType::num_coeffs_ = std::get<3>(this->GetParam());
|
||||
}
|
||||
virtual void TearDown() { libaom_test::ClearSystemState(); }
|
||||
virtual void TearDown() {}
|
||||
|
||||
protected:
|
||||
void RunFwdTxfm(const int16_t *in, OutputType *out, int stride) {
|
||||
|
|
@ -89,10 +88,12 @@ class Trans4x4FDCT : public libaom_test::TransformTestBase<OutputType>,
|
|||
};
|
||||
|
||||
using Trans4x4FDCTTranLow = Trans4x4FDCT<tran_low_t>;
|
||||
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(Trans4x4FDCTTranLow);
|
||||
TEST_P(Trans4x4FDCTTranLow, CoeffCheck) { RunCoeffCheck(); }
|
||||
TEST_P(Trans4x4FDCTTranLow, MemCheck) { RunMemCheck(); }
|
||||
|
||||
using Trans4x4FDCTInt16 = Trans4x4FDCT<int16_t>;
|
||||
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(Trans4x4FDCTInt16);
|
||||
TEST_P(Trans4x4FDCTInt16, CoeffCheck) { RunCoeffCheck(); }
|
||||
TEST_P(Trans4x4FDCTInt16, MemCheck) { RunMemCheck(); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue