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
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
3826383c
Commit
3826383c
authored
Jul 22, 2016
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiling issues
Change-Id: I530348b12a1c039842ce4e33d21046fe63878f19
parent
0ea035f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
vp10/common/idct.c
vp10/common/idct.c
+8
-6
No files found.
vp10/common/idct.c
View file @
3826383c
...
...
@@ -1172,9 +1172,10 @@ void vp10_highbd_iht4x8_32_add_c(const tran_low_t *input, uint8_t *dest8,
// inverse transform row vectors, and transpose
for
(
i
=
0
;
i
<
8
;
++
i
)
{
HIGH_IHT_4x8
[
tx_type
].
rows
(
input
,
outtmp
,
bd
);
for
(
j
=
0
;
j
<
4
;
++
j
)
out
[
j
][
i
]
=
(
tran_low_t
)
highbd_dct_const_round_shift
(
outtmp
[
j
]
*
Sqrt2
,
bd
);
for
(
j
=
0
;
j
<
4
;
++
j
)
{
out
[
j
][
i
]
=
HIGHBD_WRAPLOW
(
highbd_dct_const_round_shift
(
outtmp
[
j
]
*
Sqrt2
),
bd
);
}
input
+=
4
;
}
...
...
@@ -1227,9 +1228,10 @@ void vp10_highbd_iht8x4_32_add_c(const tran_low_t *input, uint8_t *dest8,
// inverse transform row vectors, and transpose
for
(
i
=
0
;
i
<
4
;
++
i
)
{
HIGH_IHT_8x4
[
tx_type
].
rows
(
input
,
outtmp
,
bd
);
for
(
j
=
0
;
j
<
8
;
++
j
)
out
[
j
][
i
]
=
(
tran_low_t
)
highbd_dct_const_round_shift
(
outtmp
[
j
]
*
Sqrt2
,
bd
);
for
(
j
=
0
;
j
<
8
;
++
j
)
{
out
[
j
][
i
]
=
HIGHBD_WRAPLOW
(
highbd_dct_const_round_shift
(
outtmp
[
j
]
*
Sqrt2
),
bd
);
}
input
+=
8
;
}
...
...
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