Commit 806d5e61 authored by Michael Niedermayer's avatar Michael Niedermayer

Remove unused variables from ff_mjpeg_decode_sos() found by CSA.

Originally committed as revision 18548 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c2394854
...@@ -885,7 +885,7 @@ static int mjpeg_decode_scan_progressive_ac(MJpegDecodeContext *s, int ss, int s ...@@ -885,7 +885,7 @@ static int mjpeg_decode_scan_progressive_ac(MJpegDecodeContext *s, int ss, int s
int ff_mjpeg_decode_sos(MJpegDecodeContext *s) int ff_mjpeg_decode_sos(MJpegDecodeContext *s)
{ {
int len, nb_components, i, h, v, predictor, point_transform; int len, nb_components, i, h, v, predictor, point_transform;
int vmax, hmax, index, id; int index, id;
const int block_size= s->lossless ? 1 : 8; const int block_size= s->lossless ? 1 : 8;
int ilv, prev_shift; int ilv, prev_shift;
...@@ -897,8 +897,6 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s) ...@@ -897,8 +897,6 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s)
av_log(s->avctx, AV_LOG_ERROR, "decode_sos: invalid len (%d)\n", len); av_log(s->avctx, AV_LOG_ERROR, "decode_sos: invalid len (%d)\n", len);
return -1; return -1;
} }
vmax = 0;
hmax = 0;
for(i=0;i<nb_components;i++) { for(i=0;i<nb_components;i++) {
id = get_bits(&s->gb, 8) - 1; id = get_bits(&s->gb, 8) - 1;
av_log(s->avctx, AV_LOG_DEBUG, "component: %d\n", id); av_log(s->avctx, AV_LOG_DEBUG, "component: %d\n", id);
......
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