Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
1d8277f8
Commit
1d8277f8
authored
Jul 23, 2010
by
Justin Lebar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue 150: Fixing linker warning in extend.c.
parent
2add72d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
vp8/common/extend.c
vp8/common/extend.c
+4
-1
No files found.
vp8/common/extend.c
View file @
1d8277f8
...
...
@@ -39,7 +39,10 @@ static void extend_plane_borders
for
(
i
=
0
;
i
<
h
-
0
+
1
;
i
++
)
{
vpx_memset
(
dest_ptr1
,
src_ptr1
[
0
],
el
);
// Some linkers will complain if we call vpx_memset with el set to a
// constant 0.
if
(
el
)
vpx_memset
(
dest_ptr1
,
src_ptr1
[
0
],
el
);
vpx_memset
(
dest_ptr2
,
src_ptr2
[
0
],
er
);
src_ptr1
+=
sp
;
src_ptr2
+=
sp
;
...
...
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