Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
c58d9571
Commit
c58d9571
authored
Oct 20, 2016
by
Hui Su
Committed by
Gerrit Code Review
Oct 20, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Renaming in filter-intra sse4 code" into nextgenv2
parents
e3642ac6
9ff4134f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
14 deletions
+15
-14
av1/av1_common.mk
av1/av1_common.mk
+1
-1
av1/common/x86/filterintra_sse4.c
av1/common/x86/filterintra_sse4.c
+0
-0
test/filterintra_predictors_test.cc
test/filterintra_predictors_test.cc
+13
-12
test/test.mk
test/test.mk
+1
-1
No files found.
av1/av1_common.mk
View file @
c58d9571
...
...
@@ -140,7 +140,7 @@ AV1_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iht8x8_add_neon.c
endif
ifeq
($(CONFIG_FILTER_INTRA),yes)
AV1_COMMON_SRCS-$(HAVE_SSE4_1)
+=
common/x86/
recon
intra_sse4.c
AV1_COMMON_SRCS-$(HAVE_SSE4_1)
+=
common/x86/
filter
intra_sse4.c
endif
AV1_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/av1_inv_txfm_sse2.c
...
...
av1/common/x86/
recon
intra_sse4.c
→
av1/common/x86/
filter
intra_sse4.c
View file @
c58d9571
File moved
test/
recon
intra_predictors_test.cc
→
test/
filter
intra_predictors_test.cc
View file @
c58d9571
...
...
@@ -57,9 +57,10 @@ const int MaxTestNum = 100000;
const
int
MaxTestNum
=
100
;
#endif
class
AV1IntraPredOptimzTest
:
public
::
testing
::
TestWithParam
<
PredParams
>
{
class
AV1FilterIntraPredOptimzTest
:
public
::
testing
::
TestWithParam
<
PredParams
>
{
public:
virtual
~
AV1IntraPredOptimzTest
()
{}
virtual
~
AV1
Filter
IntraPredOptimzTest
()
{}
virtual
void
SetUp
()
{
PredFuncMode
funcMode
=
GET_PARAM
(
0
);
predFuncRef_
=
std
::
tr1
::
get
<
0
>
(
funcMode
);
...
...
@@ -149,10 +150,10 @@ class AV1IntraPredOptimzTest : public ::testing::TestWithParam<PredParams> {
};
#if CONFIG_AOM_HIGHBITDEPTH
class
AV1HbdIntraPredOptimzTest
class
AV1Hbd
Filter
IntraPredOptimzTest
:
public
::
testing
::
TestWithParam
<
HbdPredParams
>
{
public:
virtual
~
AV1HbdIntraPredOptimzTest
()
{}
virtual
~
AV1Hbd
Filter
IntraPredOptimzTest
()
{}
virtual
void
SetUp
()
{
HbdPredFuncMode
funcMode
=
GET_PARAM
(
0
);
predFuncRef_
=
std
::
tr1
::
get
<
0
>
(
funcMode
);
...
...
@@ -245,21 +246,21 @@ class AV1HbdIntraPredOptimzTest
};
#endif // CONFIG_AOM_HIGHBITDEPTH
TEST_P
(
AV1IntraPredOptimzTest
,
BitExactCheck
)
{
RunTest
();
}
TEST_P
(
AV1
Filter
IntraPredOptimzTest
,
BitExactCheck
)
{
RunTest
();
}
#if PREDICTORS_SPEED_TEST
TEST_P
(
AV1IntraPredOptimzTest
,
SpeedCheckC
)
{
RunSpeedTestC
();
}
TEST_P
(
AV1
Filter
IntraPredOptimzTest
,
SpeedCheckC
)
{
RunSpeedTestC
();
}
TEST_P
(
AV1IntraPredOptimzTest
,
SpeedCheckSSE
)
{
RunSpeedTestSSE
();
}
TEST_P
(
AV1
Filter
IntraPredOptimzTest
,
SpeedCheckSSE
)
{
RunSpeedTestSSE
();
}
#endif
#if CONFIG_AOM_HIGHBITDEPTH
TEST_P
(
AV1HbdIntraPredOptimzTest
,
BitExactCheck
)
{
RunTest
();
}
TEST_P
(
AV1Hbd
Filter
IntraPredOptimzTest
,
BitExactCheck
)
{
RunTest
();
}
#if PREDICTORS_SPEED_TEST
TEST_P
(
AV1HbdIntraPredOptimzTest
,
SpeedCheckC
)
{
RunSpeedTestC
();
}
TEST_P
(
AV1Hbd
Filter
IntraPredOptimzTest
,
SpeedCheckC
)
{
RunSpeedTestC
();
}
TEST_P
(
AV1HbdIntraPredOptimzTest
,
SpeedCheckSSE
)
{
RunSpeedTestSSE
();
}
TEST_P
(
AV1Hbd
Filter
IntraPredOptimzTest
,
SpeedCheckSSE
)
{
RunSpeedTestSSE
();
}
#endif // PREDICTORS_SPEED_TEST
#endif // CONFIG_AOM_HIGHBITDEPTH
...
...
@@ -289,7 +290,7 @@ const PredFuncMode kPredFuncMdArray[] = {
const
int
kBlkSize
[]
=
{
4
,
8
,
16
,
32
};
INSTANTIATE_TEST_CASE_P
(
SSE4_1
,
AV1IntraPredOptimzTest
,
SSE4_1
,
AV1
Filter
IntraPredOptimzTest
,
::
testing
::
Combine
(
::
testing
::
ValuesIn
(
kPredFuncMdArray
),
::
testing
::
ValuesIn
(
kBlkSize
)));
...
...
@@ -320,7 +321,7 @@ const HbdPredFuncMode kHbdPredFuncMdArray[] = {
const
int
kBd
[]
=
{
10
,
12
};
INSTANTIATE_TEST_CASE_P
(
SSE4_1
,
AV1HbdIntraPredOptimzTest
,
SSE4_1
,
AV1Hbd
Filter
IntraPredOptimzTest
,
::
testing
::
Combine
(
::
testing
::
ValuesIn
(
kHbdPredFuncMdArray
),
::
testing
::
ValuesIn
(
kBlkSize
),
::
testing
::
ValuesIn
(
kBd
)));
...
...
test/test.mk
View file @
c58d9571
...
...
@@ -163,7 +163,7 @@ LIBAOM_TEST_SRCS-$(CONFIG_AV1_ENCODER) += av1_wedge_utils_test.cc
endif
ifeq
($(CONFIG_FILTER_INTRA),yes)
LIBAOM_TEST_SRCS-$(HAVE_SSE4_1)
+=
recon
intra_predictors_test.cc
LIBAOM_TEST_SRCS-$(HAVE_SSE4_1)
+=
filter
intra_predictors_test.cc
endif
ifeq
($(CONFIG_MOTION_VAR),yes)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment