diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 19:03:03 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 19:03:03 +0000 |
commit | 15d31aa1e129bb301cc4f72e44a21a583ea75f09 (patch) | |
tree | 0998c795f93840fddda538ebd48a4348572ee5ca /libavcodec | |
parent | 36672bac52b2974f8f3d4d1b6b95fe2e697444ba (diff) | |
download | ffmpeg-15d31aa1e129bb301cc4f72e44a21a583ea75f09.tar.gz |
Really fix r23782
Originally committed as revision 23788 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vp8dsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8dsp.c b/libavcodec/vp8dsp.c index 52817dbf4c..ada2c9d67d 100644 --- a/libavcodec/vp8dsp.c +++ b/libavcodec/vp8dsp.c @@ -252,8 +252,8 @@ static const uint8_t subpel_filters[7][6] = { #define PUT_PIXELS(WIDTH) \ static void put_vp8_pixels ## WIDTH ##_c(uint8_t *dst, int dststride, uint8_t *src, int srcstride, int h, int x, int y) { \ - int y; \ - for (y = 0; y < h; y++, dst+= dststride, src+= srcstride) { \ + int i; \ + for (i = 0; i < h; i++, dst+= dststride, src+= srcstride) { \ memcpy(dst, src, WIDTH); \ } \ } |