diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 13:57:22 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 13:57:22 +0000 |
commit | b52b6ae489cf1ec57e69de1ab4d8c55d13069b14 (patch) | |
tree | eed4cecef1cce47f71d711834323a2606079c647 /libavcodec | |
parent | b0e37369a1e20f81d696d7a0f588e9acb8dbe87d (diff) | |
download | ffmpeg-b52b6ae489cf1ec57e69de1ab4d8c55d13069b14.tar.gz |
Remove unused variable from decode_init() found by CSA.
Originally committed as revision 18550 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegaudiodec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 404c21a7c0..8584c6bf77 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -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++) { |