1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

put_vp_no_rnd_pixels8_l2_mmx: fix type

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2013-02-03 17:20:39 +01:00
parent fe63f3d301
commit 4d37d2bfc5

View File

@@ -64,7 +64,7 @@ void ff_vp3_h_loop_filter_mmxext(uint8_t *src, int stride,
"paddb "#regb", "#regr" \n\t" \ "paddb "#regb", "#regr" \n\t" \
"paddb "#regd", "#regp" \n\t" "paddb "#regd", "#regp" \n\t"
static void put_vp_no_rnd_pixels8_l2_mmx(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h) static void put_vp_no_rnd_pixels8_l2_mmx(uint8_t *dst, const uint8_t *a, const uint8_t *b, ptrdiff_t stride, int h)
{ {
// START_TIMER // START_TIMER
MOVQ_BFE(mm6); MOVQ_BFE(mm6);