diff --git a/libavcodec/utils.c b/libavcodec/utils.c index a06ded30c8..94df4b7855 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -3454,7 +3454,7 @@ unsigned int avpriv_toupper4(unsigned int x) return av_toupper(x & 0xFF) + (av_toupper((x >> 8) & 0xFF) << 8) + (av_toupper((x >> 16) & 0xFF) << 16) + - (av_toupper((x >> 24) & 0xFF) << 24); +((unsigned)av_toupper((x >> 24) & 0xFF) << 24); } int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)