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
512f9b63
Commit
512f9b63
authored
Aug 01, 2014
by
Jim Bankoski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed sign mismatch warning
Change-Id: Iaa40b472f6c1c48bb3bb47332b6fcf36d7f3c10e
parent
f94227c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/common/vp9_common.h
vp9/common/vp9_common.h
+1
-1
No files found.
vp9/common/vp9_common.h
View file @
512f9b63
...
...
@@ -49,7 +49,7 @@ extern "C" {
#define vp9_zero_array(dest, n) vpx_memset(dest, 0, n * sizeof(*dest))
static
INLINE
uint8_t
clip_pixel
(
int
val
)
{
return
(
val
>
255
)
?
255
u
:
(
val
<
0
)
?
0
u
:
val
;
return
(
val
>
255
)
?
255
:
(
val
<
0
)
?
0
:
val
;
}
static
INLINE
int
clamp
(
int
value
,
int
low
,
int
high
)
{
...
...
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