Commit b52b6ae4 authored by Michael Niedermayer's avatar Michael Niedermayer

Remove unused variable from decode_init() found by CSA.

Originally committed as revision 18550 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b0e37369
......@@ -358,7 +358,6 @@ static av_cold int decode_init(AVCodecContext * avctx)
for(i=1;i<16;i++) {
const HuffTable *h = &mpa_huff_tables[i];
int xsize, x, y;
unsigned int n;
uint8_t tmp_bits [512];
uint16_t tmp_codes[512];
......@@ -366,7 +365,6 @@ static av_cold int decode_init(AVCodecContext * avctx)
memset(tmp_codes, 0, sizeof(tmp_codes));
xsize = h->xsize;
n = xsize * xsize;
j = 0;
for(x=0;x<xsize;x++) {
......
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