Change to use correct type

This commit changes to use int instead of unsigned for a variable used in
inverse quantization.

Change-Id: I8f0ff5f80c9e68d52425265ef177357c65ead1e2
diff --git a/av1/encoder/quantize.c b/av1/encoder/quantize.c
index 5a6d8cb..73946c2 100644
--- a/av1/encoder/quantize.c
+++ b/av1/encoder/quantize.c
@@ -1050,7 +1050,7 @@
 #endif
 
 static void invert_quant(int16_t *quant, int16_t *shift, int d) {
-  unsigned t;
+  uint32_t t;
   int l, m;
   t = d;
   for (l = 0; t > 1; l++) t >>= 1;