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
Xiph.Org
aom-rav1e
Commits
7b9a6528
Commit
7b9a6528
authored
Jul 17, 2013
by
hkuang
Committed by
Gerrit Code Review
Jul 17, 2013
Browse files
Merge "Remove unnecessary buffer copy in idct4x4."
parents
6ac5b7db
bd6ce712
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_idct.c
View file @
7b9a6528
...
...
@@ -124,9 +124,7 @@ void vp9_short_idct4x4_add_c(int16_t *input, uint8_t *dest, int dest_stride) {
// Rows
for
(
i
=
0
;
i
<
4
;
++
i
)
{
for
(
j
=
0
;
j
<
4
;
++
j
)
temp_in
[
j
]
=
input
[
j
];
vp9_idct4_1d
(
temp_in
,
outptr
);
vp9_idct4_1d
(
input
,
outptr
);
input
+=
4
;
outptr
+=
4
;
}
...
...
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