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
6a382101
Commit
6a382101
authored
Sep 25, 2015
by
Angie Chiang
Browse files
comment out fdct32
comment out fdct32 remove fdct32 test Change-Id: I31c47fb435377465cd3265e39621ca50d3aae656
parent
b945a532
Changes
2
Hide whitespace changes
Inline
Side-by-side
test/vp10_dct_test.cc
View file @
6a382101
...
...
@@ -107,6 +107,5 @@ INSTANTIATE_TEST_CASE_P(
::
testing
::
Values
(
FdctParam
(
&
fdct4
,
&
reference_dct_1d
,
4
,
1
),
FdctParam
(
&
fdct8
,
&
reference_dct_1d
,
8
,
1
),
FdctParam
(
&
fdct16
,
&
reference_dct_1d
,
16
,
2
),
FdctParam
(
&
fdct32
,
&
reference_dct_1d
,
32
,
4
)));
FdctParam
(
&
fdct16
,
&
reference_dct_1d
,
16
,
2
)));
}
// namespace
vp10/encoder/dct.c
View file @
6a382101
...
...
@@ -322,6 +322,7 @@ static void fdct16(const tran_low_t *input, tran_low_t *output) {
range_check
(
output
,
16
,
16
);
}
/* #TODO(angiebird): Unify this with vp10_fwd_txfm.c: vp10_fdct32
static void fdct32(const tran_low_t *input, tran_low_t *output) {
tran_high_t temp;
tran_low_t step[32];
...
...
@@ -719,6 +720,7 @@ static void fdct32(const tran_low_t *input, tran_low_t *output) {
range_check(output, 32, 18);
}
*/
static
void
fadst4
(
const
tran_low_t
*
input
,
tran_low_t
*
output
)
{
tran_high_t
x0
,
x1
,
x2
,
x3
;
...
...
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