Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
6a382101
Commit
6a382101
authored
9 years ago
by
Angie Chiang
Browse files
Options
Downloads
Patches
Plain Diff
comment out fdct32
comment out fdct32 remove fdct32 test Change-Id: I31c47fb435377465cd3265e39621ca50d3aae656
parent
b945a532
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/vp10_dct_test.cc
+1
-2
1 addition, 2 deletions
test/vp10_dct_test.cc
vp10/encoder/dct.c
+2
-0
2 additions, 0 deletions
vp10/encoder/dct.c
with
3 additions
and
2 deletions
test/vp10_dct_test.cc
+
1
−
2
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
This diff is collapsed.
Click to expand it.
vp10/encoder/dct.c
+
2
−
0
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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment