Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
64b3739b
Commit
64b3739b
authored
Nov 12, 2014
by
Johann
Committed by
Gerrit Code Review
Nov 12, 2014
Browse files
Merge "Fix SSSE3 partial_idct_test detection"
parents
8e112d95
7d07f512
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/partial_idct_test.cc
View file @
64b3739b
...
...
@@ -294,17 +294,6 @@ INSTANTIATE_TEST_CASE_P(
TX_4X4
,
1
)));
#endif
#if HAVE_SSSE3 && ARCH_X86_64 && !CONFIG_VP9_HIGHBITDEPTH && \
!CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
SSSE3_64
,
PartialIDctTest
,
::
testing
::
Values
(
make_tuple
(
&
vp9_fdct8x8_c
,
&
vp9_idct8x8_64_add_c
,
&
vp9_idct8x8_12_add_ssse3
,
TX_8X8
,
12
)));
#endif
#if HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
SSSE3
,
PartialIDctTest
,
...
...
@@ -312,6 +301,14 @@ INSTANTIATE_TEST_CASE_P(
make_tuple
(
&
vp9_fdct16x16_c
,
&
vp9_idct16x16_256_add_c
,
&
vp9_idct16x16_10_add_ssse3
,
TX_16X16
,
10
)));
#endif
TX_16X16
,
10
)
#if ARCH_X86_64
,
make_tuple
(
&
vp9_fdct8x8_c
,
&
vp9_idct8x8_64_add_c
,
&
vp9_idct8x8_12_add_ssse3
,
TX_8X8
,
12
)
#endif // ARCH_X86_64
));
#endif // HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
}
// namespace
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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