Skip to content
Snippets Groups Projects
Commit 3831c098 authored by Jim Bankoski's avatar Jim Bankoski Committed by Gerrit Code Review
Browse files

Merge "style fixes: vpx_scale.c assertion formatting"

parents ec7e97be 1965276c
No related branches found
No related tags found
No related merge requests found
......@@ -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 +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment