Mercurial > libavcodec.hg
diff vc1dsp.c @ 4594:a96d905dcbaa libavcodec
Add av_ prefix to clip functions
| author | reimar |
|---|---|
| date | Sun, 25 Feb 2007 10:27:12 +0000 |
| parents | d6f83e2f8804 |
| children | 2b72f9bc4f06 |
line wrap: on
line diff
--- a/vc1dsp.c Sun Feb 25 07:53:44 2007 +0000 +++ b/vc1dsp.c Sun Feb 25 10:27:12 2007 +0000 @@ -355,7 +355,7 @@ tptr = tmp; for(j = 0; j < 11; j++) { for(i = 0; i < 8; i++) - tptr[i] = clip_uint8(vc1_mspel_filter(src + i, 1, m, r)); + tptr[i] = av_clip_uint8(vc1_mspel_filter(src + i, 1, m, r)); src += stride; tptr += 8; } @@ -365,7 +365,7 @@ tptr = tmp + 8; for(j = 0; j < 8; j++) { for(i = 0; i < 8; i++) - dst[i] = clip_uint8(vc1_mspel_filter(tptr + i, 8, m, r)); + dst[i] = av_clip_uint8(vc1_mspel_filter(tptr + i, 8, m, r)); dst += stride; tptr += 8; }
