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
Guillaume Martres
aom-rav1e
Commits
424c74e7
Commit
424c74e7
authored
Oct 04, 2013
by
Jim Bankoski
Browse files
cpplint vp9_dct.c issues resolved
Change-Id: Ia21653a447040f1b472d21ebd19103b0558c4b16
parent
c6960b60
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_dct.c
View file @
424c74e7
...
...
@@ -593,11 +593,11 @@ void vp9_short_fht8x8_c(int16_t *input, int16_t *output,
/* 4-point reversible, orthonormal Walsh-Hadamard in 3.5 adds, 0.5 shifts per
pixel. */
void
vp9_short_walsh4x4_c
(
shor
t
*
input
,
shor
t
*
output
,
int
pitch
)
{
void
vp9_short_walsh4x4_c
(
int16_
t
*
input
,
int16_
t
*
output
,
int
pitch
)
{
int
i
;
int
a1
,
b1
,
c1
,
d1
,
e1
;
shor
t
*
ip
=
input
;
shor
t
*
op
=
output
;
int16_
t
*
ip
=
input
;
int16_
t
*
op
=
output
;
int
pitch_short
=
pitch
>>
1
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
...
...
@@ -647,7 +647,7 @@ void vp9_short_walsh4x4_c(short *input, short *output, int pitch) {
}
}
void
vp9_short_walsh8x4_c
(
shor
t
*
input
,
shor
t
*
output
,
int
pitch
)
{
void
vp9_short_walsh8x4_c
(
int16_
t
*
input
,
int16_
t
*
output
,
int
pitch
)
{
vp9_short_walsh4x4_c
(
input
,
output
,
pitch
);
vp9_short_walsh4x4_c
(
input
+
4
,
output
+
16
,
pitch
);
}
...
...
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