Skip to content
Snippets Groups Projects
Commit cd29c2b5 authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser
Browse files

Fix c99ism in r23782

Originally committed as revision 23786 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 96da2a69
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +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) { \
for (int y = 0; y < h; y++, dst+= dststride, src+= srcstride) { \
int y; \
for (y = 0; y < h; y++, dst+= dststride, src+= srcstride) { \
memcpy(dst, src, WIDTH); \
} \
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment