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
Open sidebar
Guillaume Martres
aom-rav1e
Commits
c5a7c89e
Commit
c5a7c89e
authored
May 27, 2015
by
Johann
Browse files
Correct case in Get4x4SSEFunc
Change-Id: Ie8a7508798fa8e65c579a77cedb8305cee4ddc81
parent
dee70d35
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
test/variance_test.cc
test/variance_test.cc
+4
-4
No files found.
test/variance_test.cc
View file @
c5a7c89e
...
...
@@ -32,7 +32,7 @@ namespace {
typedef
unsigned
int
(
*
VarianceMxNFunc
)(
const
uint8_t
*
a
,
int
a_stride
,
const
uint8_t
*
b
,
int
b_stride
,
unsigned
int
*
sse
);
typedef
unsigned
int
(
*
Get4x4S
SE
Func
)(
const
uint8_t
*
a
,
int
a_stride
,
typedef
unsigned
int
(
*
Get4x4S
se
Func
)(
const
uint8_t
*
a
,
int
a_stride
,
const
uint8_t
*
b
,
int
b_stride
);
...
...
@@ -691,7 +691,7 @@ void SubpelVarianceTest<vp9_subp_avg_variance_fn_t>::RefTest() {
}
#endif // CONFIG_VP9_ENCODER
typedef
MseTest
<
Get4x4S
SE
Func
>
VpxSseTest
;
typedef
MseTest
<
Get4x4S
se
Func
>
VpxSseTest
;
typedef
MseTest
<
VarianceMxNFunc
>
VpxMseTest
;
typedef
VarianceTest
<
VarianceMxNFunc
>
VpxVarianceTest
;
...
...
@@ -709,7 +709,7 @@ TEST_P(SumOfSquaresTest, Ref) { RefTest(); }
INSTANTIATE_TEST_CASE_P
(
C
,
SumOfSquaresTest
,
::
testing
::
Values
(
vpx_get_mb_ss_c
));
const
Get4x4S
SE
Func
get4x4sse_cs_c
=
vpx_get4x4sse_cs_c
;
const
Get4x4S
se
Func
get4x4sse_cs_c
=
vpx_get4x4sse_cs_c
;
INSTANTIATE_TEST_CASE_P
(
C
,
VpxSseTest
,
::
testing
::
Values
(
make_tuple
(
2
,
2
,
get4x4sse_cs_c
)));
...
...
@@ -1839,7 +1839,7 @@ INSTANTIATE_TEST_CASE_P(
#endif // HAVE_AVX2
#if HAVE_NEON
const
Get4x4S
SE
Func
get4x4sse_cs_neon
=
vpx_get4x4sse_cs_neon
;
const
Get4x4S
se
Func
get4x4sse_cs_neon
=
vpx_get4x4sse_cs_neon
;
INSTANTIATE_TEST_CASE_P
(
NEON
,
VpxSseTest
,
::
testing
::
Values
(
make_tuple
(
2
,
2
,
get4x4sse_cs_neon
)));
...
...
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