diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-03-31 18:22:35 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-31 18:22:35 +0000 |
commit | ad8812be8fb790c1c29fa847b467dbb6c458e000 (patch) | |
tree | 5353ea76f42b140f6aea41f1f5dc7765c81bc974 /libavcodec/mjpeg.c | |
parent | 002a7414b5852418f9a66245fc414c0416c4b4c1 (diff) | |
download | ffmpeg-ad8812be8fb790c1c29fa847b467dbb6c458e000.tar.gz |
remove useless code
Originally committed as revision 5256 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mjpeg.c')
-rw-r--r-- | libavcodec/mjpeg.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c index 8f24931e83..dffd989469 100644 --- a/libavcodec/mjpeg.c +++ b/libavcodec/mjpeg.c @@ -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(;;) { |