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
7346ca19
Commit
7346ca19
authored
Jul 26, 2017
by
Angie Chiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix convolve_round's compile error
Change-Id: I63fc3f1f010e77c6dc033f37e3e91ade17a55099
parent
16a9df75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
test/convolve_round_test.cc
test/convolve_round_test.cc
+5
-0
No files found.
test/convolve_round_test.cc
View file @
7346ca19
...
...
@@ -151,6 +151,7 @@ TEST_P(ConvolveRoundTest, BitExactCheck) { ConvolveRoundingRun(); }
using
std
::
tr1
::
make_tuple
;
#if HAVE_AVX2
#if CONFIG_HIGHBITDEPTH
const
ConvolveRoundParam
kConvRndParamArray
[]
=
{
make_tuple
(
&
av1_convolve_rounding_c
,
&
av1_convolve_rounding_avx2
,
LOWBITDEPTH_TEST
),
...
...
@@ -164,6 +165,10 @@ const ConvolveRoundParam kConvRndParamArray[] = {
&
highbd_convolve_rounding_12
<
av1_highbd_convolve_rounding_avx2
>
,
HIGHBITDEPTH_TEST
)
};
#else
const
ConvolveRoundParam
kConvRndParamArray
[]
=
{
make_tuple
(
&
av1_convolve_rounding_c
,
&
av1_convolve_rounding_avx2
,
LOWBITDEPTH_TEST
)
};
#endif
INSTANTIATE_TEST_CASE_P
(
AVX2
,
ConvolveRoundTest
,
::
testing
::
ValuesIn
(
kConvRndParamArray
));
...
...
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