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
0f3689d3
Commit
0f3689d3
authored
Aug 01, 2014
by
Jim Bankoski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
signed unsigned mismatch - warning error
Change-Id: I991e36aa3cfa62aae6d27b253297dd9ca9e8bc12
parent
512f9b63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/common/vp9_prob.h
vp9/common/vp9_prob.h
+1
-1
No files found.
vp9/common/vp9_prob.h
View file @
0f3689d3
...
...
@@ -44,7 +44,7 @@ typedef int8_t vp9_tree_index;
typedef
const
vp9_tree_index
vp9_tree
[];
static
INLINE
vp9_prob
clip_prob
(
int
p
)
{
return
(
p
>
255
)
?
255
u
:
(
p
<
1
)
?
1
u
:
p
;
return
(
p
>
255
)
?
255
:
(
p
<
1
)
?
1
:
p
;
}
static
INLINE
vp9_prob
get_prob
(
int
num
,
int
den
)
{
...
...
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