From 4ccccd6c40a6d0ce85e96a6e37f558236e2a6a75 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Wed, 1 Jul 2015 13:34:50 +0200 Subject: g2meet: use an unsigned type for the djb hash --- libavcodec/g2meet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/g2meet.c') diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index d0b36f0ea8..600e2b23ce 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -399,7 +399,7 @@ static inline int log2_ceil(uint32_t x) /* improved djb2 hash from http://www.cse.yorku.ca/~oz/hash.html */ static int djb2_hash(uint32_t key) { - int h = 5381; + uint32_t h = 5381; h = (h * 33) ^ ((key >> 24) & 0xFF); // xxx: probably not needed at all h = (h * 33) ^ ((key >> 16) & 0xFF); -- cgit v1.2.3