Commit 3a924f6e authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "signed unsigned mismatch - warning error"

Showing with 1 addition and 1 deletion
......@@ -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) ? 255u : (p < 1) ? 1u : p;
return (p > 255) ? 255 : (p < 1) ? 1 : p;
}
static INLINE vp9_prob get_prob(int num, int den) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment