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
6c933e16
Commit
6c933e16
authored
Jul 07, 2017
by
Sebastien Alaiwan
Browse files
av1_inv_txfm2d_test: Remove suffix on local variable name
Change-Id: I7d720a755f44f0c0094c9262d3e22ac0fd0edba5
parent
93cb2dd3
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/av1_inv_txfm2d_test.cc
View file @
6c933e16
...
...
@@ -52,9 +52,9 @@ class AV1InvTxfm2d : public ::testing::TestWithParam<AV1InvTxfm2dParam> {
double
avg_abs_error
=
0
;
ACMRandom
rnd
(
ACMRandom
::
DeterministicSeed
());
const
int
count
_
=
500
;
const
int
count
=
500
;
for
(
int
ci
=
0
;
ci
<
count
_
;
ci
++
)
{
for
(
int
ci
=
0
;
ci
<
count
;
ci
++
)
{
int16_t
expected
[
64
*
64
]
=
{
0
};
assert
(
txfm2d_size_
<
ARRAY_SIZE
(
expected
));
...
...
@@ -82,7 +82,7 @@ class AV1InvTxfm2d : public ::testing::TestWithParam<AV1InvTxfm2dParam> {
expected
,
actual
,
txfm2d_size_
);
}
avg_abs_error
/=
count
_
;
avg_abs_error
/=
count
;
// max_abs_avg_error comes from upper bound of
// printf("txfm1d_size: %d accuracy_avg_abs_error: %f\n",
// txfm1d_size_, avg_abs_error);
...
...
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