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
Xiph.Org
aom-rav1e
Commits
a097963f
Commit
a097963f
authored
Dec 22, 2015
by
James Zern
Committed by
Gerrit Code Review
Dec 22, 2015
Browse files
Merge "Code clean of highbd_dc_predictor_4x4"
parents
52e7f415
8366b414
Changes
3
Hide whitespace changes
Inline
Side-by-side
test/vp9_intrapred_test.cc
View file @
a097963f
...
...
@@ -141,7 +141,7 @@ INSTANTIATE_TEST_CASE_P(SSE2_TO_C_8, VP9IntraPredTest,
&
vpx_highbd_tm_predictor_16x16_c
,
16
,
8
),
make_tuple
(
&
vpx_highbd_tm_predictor_32x32_sse2
,
&
vpx_highbd_tm_predictor_32x32_c
,
32
,
8
),
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
,
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
2
,
&
vpx_highbd_dc_predictor_4x4_c
,
4
,
8
),
make_tuple
(
&
vpx_highbd_dc_predictor_8x8_sse2
,
&
vpx_highbd_dc_predictor_8x8_c
,
8
,
8
),
...
...
@@ -162,7 +162,7 @@ INSTANTIATE_TEST_CASE_P(SSE2_TO_C_8, VP9IntraPredTest,
#else
INSTANTIATE_TEST_CASE_P
(
SSE2_TO_C_8
,
VP9IntraPredTest
,
::
testing
::
Values
(
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
,
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
2
,
&
vpx_highbd_dc_predictor_4x4_c
,
4
,
8
),
make_tuple
(
&
vpx_highbd_dc_predictor_8x8_sse2
,
&
vpx_highbd_dc_predictor_8x8_c
,
8
,
8
),
...
...
@@ -194,7 +194,7 @@ INSTANTIATE_TEST_CASE_P(SSE2_TO_C_10, VP9IntraPredTest,
make_tuple
(
&
vpx_highbd_tm_predictor_32x32_sse2
,
&
vpx_highbd_tm_predictor_32x32_c
,
32
,
10
),
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
,
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
2
,
&
vpx_highbd_dc_predictor_4x4_c
,
4
,
10
),
make_tuple
(
&
vpx_highbd_dc_predictor_8x8_sse2
,
&
vpx_highbd_dc_predictor_8x8_c
,
8
,
10
),
...
...
@@ -218,7 +218,7 @@ INSTANTIATE_TEST_CASE_P(SSE2_TO_C_10, VP9IntraPredTest,
#else
INSTANTIATE_TEST_CASE_P
(
SSE2_TO_C_10
,
VP9IntraPredTest
,
::
testing
::
Values
(
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
,
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
2
,
&
vpx_highbd_dc_predictor_4x4_c
,
4
,
10
),
make_tuple
(
&
vpx_highbd_dc_predictor_8x8_sse2
,
&
vpx_highbd_dc_predictor_8x8_c
,
8
,
10
),
...
...
@@ -251,7 +251,7 @@ INSTANTIATE_TEST_CASE_P(SSE2_TO_C_12, VP9IntraPredTest,
make_tuple
(
&
vpx_highbd_tm_predictor_32x32_sse2
,
&
vpx_highbd_tm_predictor_32x32_c
,
32
,
12
),
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
,
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
2
,
&
vpx_highbd_dc_predictor_4x4_c
,
4
,
12
),
make_tuple
(
&
vpx_highbd_dc_predictor_8x8_sse2
,
&
vpx_highbd_dc_predictor_8x8_c
,
8
,
12
),
...
...
@@ -275,7 +275,7 @@ INSTANTIATE_TEST_CASE_P(SSE2_TO_C_12, VP9IntraPredTest,
#else
INSTANTIATE_TEST_CASE_P
(
SSE2_TO_C_12
,
VP9IntraPredTest
,
::
testing
::
Values
(
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
,
make_tuple
(
&
vpx_highbd_dc_predictor_4x4_sse
2
,
&
vpx_highbd_dc_predictor_4x4_c
,
4
,
12
),
make_tuple
(
&
vpx_highbd_dc_predictor_8x8_sse2
,
&
vpx_highbd_dc_predictor_8x8_c
,
8
,
12
),
...
...
vpx_dsp/vpx_dsp_rtcd_defs.pl
View file @
a097963f
...
...
@@ -294,7 +294,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize
qw/vpx_highbd_tm_predictor_4x4/
,
"
$sse_x86inc
";
add_proto
qw/void vpx_highbd_dc_predictor_4x4/
,
"
uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd
";
specialize
qw/vpx_highbd_dc_predictor_4x4/
,
"
$sse_x86inc
";
specialize
qw/vpx_highbd_dc_predictor_4x4/
,
"
$sse
2
_x86inc
";
add_proto
qw/void vpx_highbd_dc_top_predictor_4x4/
,
"
uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd
";
specialize
qw/vpx_highbd_dc_top_predictor_4x4/
;
...
...
vpx_dsp/x86/highbd_intrapred_sse2.asm
View file @
a097963f
...
...
@@ -17,24 +17,20 @@ pw_16: times 4 dd 16
pw_32:
times
4
dd
32
SECTION
.text
INIT_MM
X
ss
e
INIT_
X
MM
ss
e
2
cglobal
highbd_dc_predictor_4x4
,
4
,
5
,
4
,
ds
t
,
stride
,
above
,
left
,
goffset
GET_GOT
goffsetq
movq
m0
,
[
aboveq
]
movq
m2
,
[
leftq
]
DEFINE_ARGS
ds
t
,
stride
,
one
mov
oned
,
0x0001
pxor
m1
,
m1
movd
m3
,
oned
pshufw
m3
,
m3
,
0x0
paddw
m0
,
m2
pmaddwd
m0
,
m3
packssdw
m0
,
m1
pmaddwd
m0
,
m3
pshuflw
m1
,
m0
,
0xe
paddw
m0
,
m1
pshuflw
m1
,
m0
,
0x1
paddw
m0
,
m1
paddw
m0
,
[
GLOBAL
(
pw_4
)]
psraw
m0
,
3
pshufw
m0
,
m0
,
0x0
pshuf
l
w
m0
,
m0
,
0x0
movq
[
ds
tq
],
m0
movq
[
ds
tq
+
strideq
*
2
],
m0
lea
ds
tq
,
[
ds
tq
+
strideq
*
4
]
...
...
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