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
Yushin Cho
aom-rav1e
Commits
1965276c
Commit
1965276c
authored
Jan 29, 2016
by
Jim Bankoski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style fixes: vpx_scale.c assertion formatting
Change-Id: I0d6763957d27a586088cdcd50bd46982b8a686f3
parent
c95eb4c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vpx_scale/generic/vpx_scale.c
vpx_scale/generic/vpx_scale.c
+3
-3
No files found.
vpx_scale/generic/vpx_scale.c
View file @
1965276c
...
...
@@ -168,9 +168,9 @@ static void scale1d_c(const unsigned char *source, int source_step,
(
void
)
source_length
;
/* These asserts are needed if there are boundary issues... */
/*assert ( dest_scale > source_scale );*/
/*assert ( (source_length
-
1) * dest_scale >= (dest_length
-
1) *
source_scale
* );*/
/*
assert ( dest_scale > source_scale );*/
/*
assert ( (source_length
-
1) * dest_scale >= (dest_length
-
1) *
*
source_scale
);*/
for
(
i
=
0
;
i
<
dest_length
*
dest_step
;
i
+=
dest_step
)
{
dest
[
i
]
=
(
char
)((
left_modifier
*
left_pixel
+
...
...
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