Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
3826383c
Commit
3826383c
authored
Jul 22, 2016
by
Yaowu Xu
Browse files
Fix compiling issues
Change-Id: I530348b12a1c039842ce4e33d21046fe63878f19
parent
0ea035f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
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