mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-18 13:21:08 +00:00
fix gcc 2.95 compilation
Originally committed as revision 5243 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
085065f0fd
commit
60f3c0b8fc
@ -1273,7 +1273,7 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
|
||||
/* AC coefs */
|
||||
ac_vlc = &s->vlcs[1][ac_index];
|
||||
i = 0;
|
||||
OPEN_READER(re, &s->gb)
|
||||
{OPEN_READER(re, &s->gb)
|
||||
for(;;) {
|
||||
UPDATE_CACHE(re, &s->gb);
|
||||
GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2)
|
||||
@ -1310,7 +1310,7 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
|
||||
block[j] = level * quant_matrix[j];
|
||||
}
|
||||
}
|
||||
CLOSE_READER(re, &s->gb)
|
||||
CLOSE_READER(re, &s->gb)}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user