Commit 0554c10f authored by michael's avatar michael

Remove unused variable from decode_init() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18550 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c61b15d4
......@@ -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