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
6e28006f
Commit
6e28006f
authored
May 31, 2017
by
Alex Converse
Browse files
Fix XCode clang build.
BUG=aomedia:571 Change-Id: I9779e341def6329a1d30a59d030b4b72819bf592
parent
b6200c9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/quantize_func_test.cc
View file @
6e28006f
...
...
@@ -215,7 +215,7 @@ using std::tr1::make_tuple;
#if HAVE_SSE2
const
QuantizeParam
kQParamArraySSE2
[]
=
{
make_tuple
(
av1_quantize_fp_c
,
av1_quantize_fp_sse2
,
TX_16X16
,
AOM_BITS_8
)
};
&
av1_quantize_fp_c
,
&
av1_quantize_fp_sse2
,
TX_16X16
,
AOM_BITS_8
)
};
INSTANTIATE_TEST_CASE_P
(
SSE2
,
QuantizeTest
,
::
testing
::
ValuesIn
(
kQParamArraySSE2
));
...
...
@@ -223,7 +223,7 @@ INSTANTIATE_TEST_CASE_P(SSE2, QuantizeTest,
#if !CONFIG_HIGHBITDEPTH && HAVE_SSSE3 && ARCH_X86_64
const
QuantizeParam
kQParamArraySSSE3
[]
=
{
make_tuple
(
av1_quantize_fp_c
,
av1_quantize_fp_ssse3
,
TX_16X16
,
AOM_BITS_8
),
make_tuple
(
&
av1_quantize_fp_c
,
&
av1_quantize_fp_ssse3
,
TX_16X16
,
AOM_BITS_8
),
// TODO(any):
// The following test couldn't pass yet
// make_tuple(av1_quantize_fp_c, av1_quantize_fp_32x32_ssse3, TX_32X32,
...
...
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