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
Guillaume Martres
aom-rav1e
Commits
1057ee48
Commit
1057ee48
authored
Aug 07, 2015
by
Jingning Han
Browse files
Add static syntax to copy_mem64x64
Change-Id: Iee4c853ea4a44ae9f5de60c09e5a7b810f15d2dd
parent
d74ceb03
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_mfqe.c
View file @
1057ee48
...
...
@@ -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
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