Browse Source

Really fix r23782

Originally committed as revision 23788 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Jason Garrett-Glaser 15 years ago
parent
commit
15d31aa1e1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/vp8dsp.c

+ 2
- 2
libavcodec/vp8dsp.c View File

@@ -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); \
} \
}


Loading…
Cancel
Save