Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
a9aa29d9
Commit
a9aa29d9
authored
Aug 07, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Aug 07, 2015
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Add static syntax to copy_mem64x64"
parents
9f7fdcbe
1057ee48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vp9/common/vp9_mfqe.c
vp9/common/vp9_mfqe.c
+2
-2
No files found.
vp9/common/vp9_mfqe.c
View file @
a9aa29d9
...
...
@@ -120,8 +120,8 @@ static void copy_mem32x32(const uint8_t *src, int src_stride,
dst
+
dst_stride
*
16
+
16
,
dst_stride
);
}
void
copy_mem64x64
(
const
uint8_t
*
src
,
int
src_stride
,
uint8_t
*
dst
,
int
dst_stride
)
{
static
void
copy_mem64x64
(
const
uint8_t
*
src
,
int
src_stride
,
uint8_t
*
dst
,
int
dst_stride
)
{
copy_mem32x32
(
src
,
src_stride
,
dst
,
dst_stride
);
copy_mem32x32
(
src
+
32
,
src_stride
,
dst
+
32
,
dst_stride
);
copy_mem32x32
(
src
+
src_stride
*
32
,
src_stride
,
...
...
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