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
69f2adaa
Commit
69f2adaa
authored
Jul 10, 2017
by
Sebastien Alaiwan
Browse files
idct tests: rename member variable
Change-Id: I2833fa31f9e76c412d62538796e6931ff86f9842
parent
7256eb5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/av1_inv_txfm_test.cc
View file @
69f2adaa
...
...
@@ -64,7 +64,7 @@ class TransTestBase {
ref_input
[
ni
]
=
static_cast
<
double
>
(
input
[
ni
]);
}
fwd
_txfm_
(
input
,
output
);
inv
_txfm_
(
input
,
output
);
reference_idct_1d
(
ref_input
,
ref_output
,
txfm_size_
);
for
(
int
ni
=
0
;
ni
<
txfm_size_
;
++
ni
)
{
...
...
@@ -77,7 +77,7 @@ class TransTestBase {
double
max_error_
;
int
txfm_size_
;
IdctFunc
fwd
_txfm_
;
IdctFunc
inv
_txfm_
;
};
typedef
std
::
tr1
::
tuple
<
IdctFunc
,
int
,
int
>
IdctParam
;
...
...
@@ -85,7 +85,7 @@ class AV1InvTxfm : public TransTestBase,
public
::
testing
::
TestWithParam
<
IdctParam
>
{
public:
virtual
void
SetUp
()
{
fwd
_txfm_
=
GET_PARAM
(
0
);
inv
_txfm_
=
GET_PARAM
(
0
);
txfm_size_
=
GET_PARAM
(
1
);
max_error_
=
GET_PARAM
(
2
);
}
...
...
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