Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
b644384b
Commit
b644384b
authored
Apr 01, 2015
by
James Zern
Committed by
Gerrit Code Review
Apr 01, 2015
Browse files
Merge "vp9: fix high-bitdepth NEON build"
parents
54210f70
88453340
Changes
2
Hide whitespace changes
Inline
Side-by-side
test/partial_idct_test.cc
View file @
b644384b
...
...
@@ -230,7 +230,7 @@ INSTANTIATE_TEST_CASE_P(
&
vp9_idct4x4_1_add_c
,
TX_4X4
,
1
)));
#if HAVE_NEON
#if HAVE_NEON
&& !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
NEON
,
PartialIDctTest
,
::
testing
::
Values
(
...
...
@@ -258,7 +258,7 @@ INSTANTIATE_TEST_CASE_P(
&
vp9_idct4x4_16_add_c
,
&
vp9_idct4x4_1_add_neon
,
TX_4X4
,
1
)));
#endif // HAVE_NEON
#endif // HAVE_NEON
&& !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
INSTANTIATE_TEST_CASE_P
(
...
...
vp9/common/vp9_rtcd_defs.pl
View file @
b644384b
...
...
@@ -499,7 +499,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize
qw/vp9_highbd_d153_predictor_4x4/
;
add_proto
qw/void vp9_highbd_v_predictor_4x4/
,
"
uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd
";
specialize
qw/vp9_highbd_v_predictor_4x4
neon
/
,
"
$sse_x86inc
";
specialize
qw/vp9_highbd_v_predictor_4x4/
,
"
$sse_x86inc
";
add_proto
qw/void vp9_highbd_tm_predictor_4x4/
,
"
uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd
";
specialize
qw/vp9_highbd_tm_predictor_4x4/
,
"
$sse_x86inc
";
...
...
@@ -577,7 +577,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize
qw/vp9_highbd_d153_predictor_16x16/
;
add_proto
qw/void vp9_highbd_v_predictor_16x16/
,
"
uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd
";
specialize
qw/vp9_highbd_v_predictor_16x16
neon
/
,
"
$sse2_x86inc
";
specialize
qw/vp9_highbd_v_predictor_16x16/
,
"
$sse2_x86inc
";
add_proto
qw/void vp9_highbd_tm_predictor_16x16/
,
"
uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd
";
specialize
qw/vp9_highbd_tm_predictor_16x16/
,
"
$sse2_x86_64
";
...
...
Write
Preview
Supports
Markdown
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