Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
cebe2c8d
Commit
cebe2c8d
authored
Aug 22, 2014
by
Jim Bankoski
Committed by
Gerrit Code Review
Aug 22, 2014
Browse files
vp9_postproc.c: unused parameter warning resolved
Change-Id: I6d77a7c775c0482fd1f9bb03ea6f336dd2973fa0
parent
d75da2e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_postproc.c
View file @
cebe2c8d
...
...
@@ -366,6 +366,9 @@ void vp9_plane_add_noise_c(uint8_t *start, char *noise,
unsigned
int
width
,
unsigned
int
height
,
int
pitch
)
{
unsigned
int
i
,
j
;
// TODO(jbb): why does simd code use both but c doesn't, normalize and
// fix..
(
void
)
bothclamp
;
for
(
i
=
0
;
i
<
height
;
i
++
)
{
uint8_t
*
pos
=
start
+
i
*
pitch
;
char
*
ref
=
(
char
*
)(
noise
+
(
rand
()
&
0xff
));
// NOLINT
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment