signed unsigned mismatch - warning error

Change-Id: I991e36aa3cfa62aae6d27b253297dd9ca9e8bc12
This commit is contained in:
Jim Bankoski 2014-08-01 06:29:32 -07:00
Родитель 512f9b631f
Коммит 0f3689d32d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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) {