remove useless code

Originally committed as revision 5256 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2006-03-31 18:22:35 +00:00
parent 002a7414b5
commit ad8812be8f
1 changed files with 0 additions and 2 deletions

View File

@ -1259,7 +1259,6 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
int component, int dc_index, int ac_index, int16_t *quant_matrix)
{
int code, i, j, level, val;
VLC *ac_vlc;
/* DC coef */
val = mjpeg_decode_dc(s, dc_index);
@ -1271,7 +1270,6 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
s->last_dc[component] = val;
block[0] = val;
/* AC coefs */
ac_vlc = &s->vlcs[1][ac_index];
i = 0;
{OPEN_READER(re, &s->gb)
for(;;) {