Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
a9aa29d9
Commit
a9aa29d9
authored
9 years ago
by
Jingning Han
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Add static syntax to copy_mem64x64"
parents
9f7fdcbe
1057ee48
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp9/common/vp9_mfqe.c
+2
-2
2 additions, 2 deletions
vp9/common/vp9_mfqe.c
with
2 additions
and
2 deletions
vp9/common/vp9_mfqe.c
+
2
−
2
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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment