Commit 15d31aa1 authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser

Really fix r23782

Originally committed as revision 23788 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 36672bac
...@@ -252,8 +252,8 @@ static const uint8_t subpel_filters[7][6] = { ...@@ -252,8 +252,8 @@ static const uint8_t subpel_filters[7][6] = {
#define PUT_PIXELS(WIDTH) \ #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) { \ 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; \ int i; \
for (y = 0; y < h; y++, dst+= dststride, src+= srcstride) { \ for (i = 0; i < h; i++, dst+= dststride, src+= srcstride) { \
memcpy(dst, src, WIDTH); \ memcpy(dst, src, WIDTH); \
} \ } \
} }
......
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