You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
svq3: fix cast type to be independant of "sizeof(int)"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user