Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
7637387c
Commit
7637387c
authored
Nov 14, 2013
by
Jingning Han
Browse files
Fix coding format in vp9_idct
Change-Id: If97ae16a4478717933345b6b9d5bc1b417b8dd84
parent
58f75437
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_idct.c
View file @
7637387c
...
...
@@ -835,7 +835,8 @@ void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *dest, int stride,
ht
.
cols
(
temp_in
,
temp_out
);
for
(
j
=
0
;
j
<
16
;
++
j
)
dest
[
j
*
stride
+
i
]
=
clip_pixel
(
ROUND_POWER_OF_TWO
(
temp_out
[
j
],
6
)
+
dest
[
j
*
stride
+
i
]);
}
+
dest
[
j
*
stride
+
i
]);
}
}
void
vp9_idct16x16_10_add_c
(
const
int16_t
*
input
,
uint8_t
*
dest
,
int
stride
)
{
...
...
@@ -1276,7 +1277,7 @@ void vp9_idct32x32_1024_add_c(const int16_t *input, uint8_t *dest, int stride) {
idct32_1d
(
temp_in
,
temp_out
);
for
(
j
=
0
;
j
<
32
;
++
j
)
dest
[
j
*
stride
+
i
]
=
clip_pixel
(
ROUND_POWER_OF_TWO
(
temp_out
[
j
],
6
)
+
dest
[
j
*
stride
+
i
]);
+
dest
[
j
*
stride
+
i
]);
}
}
...
...
Write
Preview
Supports
Markdown
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