Skip to content
GitLab
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
bd6ce712
Commit
bd6ce712
authored
Jul 17, 2013
by
hkuang
Browse files
Remove unnecessary buffer copy in idct4x4.
Change-Id: I386066b9bcfb4bffb582e6827af36ca0181f6a83
parent
10e83b07
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_idct.c
View file @
bd6ce712
...
...
@@ -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
.
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