diff --git a/libavcodec/lagarithrac.c b/libavcodec/lagarithrac.c index 9f7bc41ef5..895acb0d35 100644 --- a/libavcodec/lagarithrac.c +++ b/libavcodec/lagarithrac.c @@ -45,7 +45,7 @@ void ff_lag_rac_init(lag_rac *l, GetBitContext *gb, int length) l->range = 0x80; l->low = *l->bytestream >> 1; - l->hash_shift = FFMAX(l->scale - 8, 0); + l->hash_shift = FFMAX((int)l->scale - 8, 0); for (i = j = 0; i < 256; i++) { unsigned r = i << l->hash_shift;