Commit 7dee5f04 authored by Michael Niedermayer's avatar Michael Niedermayer

svq3: fix cast type to be independant of "sizeof(int)"

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 17d5746d
......@@ -225,7 +225,7 @@ static inline int svq3_decode_block(GetBitContext *gb, DCTELEM *block,
for (limit = (16 >> intra); index < 16; index = limit, limit += 8) {
for (; (vlc = svq3_get_ue_golomb(gb)) != 0; index++) {
if ((int)vlc < 0)
if ((int32_t)vlc < 0)
return -1;
sign = (vlc & 1) ? 0 : -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment