diff options
author | Måns Rullgård <mans@mansr.com> | 2005-08-14 15:42:40 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-08-14 15:42:40 +0000 |
commit | bf4e3bd2d0263169ebf5d88972ae319ecb0d7a1e (patch) | |
tree | 21994d3ba7eb77248e57a7291217c45816ce7648 /libavcodec/vp3dsp.c | |
parent | 72ce053b9cc9fc7fddce15ea8833a3783fef3540 (diff) | |
download | ffmpeg-bf4e3bd2d0263169ebf5d88972ae319ecb0d7a1e.tar.gz |
kill a bunch of compiler warnings
Originally committed as revision 4522 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3dsp.c')
-rw-r--r-- | libavcodec/vp3dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3dsp.c b/libavcodec/vp3dsp.c index 015f57b570..047fee763e 100644 --- a/libavcodec/vp3dsp.c +++ b/libavcodec/vp3dsp.c @@ -45,7 +45,7 @@ static always_inline void idct(uint8_t *dst, int stride, int16_t *input, int typ int _Ed, _Gd, _Add, _Bdd, _Fd, _Hd; int t1, t2; - int i, j; + int i; /* Inverse DCT on the rows now */ for (i = 0; i < 8; i++) { |