From 226671ee2fb37e1f231b709e56c538b8765e7ff6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 1 Apr 2012 22:04:05 +0200 Subject: [PATCH] dsputil_mmx: fix scalarproduct prototypes Signed-off-by: Michael Niedermayer --- libavcodec/x86/dsputil_mmx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index c887d6d79c..3d85bcf132 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -2655,9 +2655,9 @@ void ff_vp3_idct_put_sse2(uint8_t *dest, int line_size, DCTELEM *block); void ff_vp3_idct_add_sse2(uint8_t *dest, int line_size, DCTELEM *block); int32_t ff_scalarproduct_int16_mmx2(const int16_t *v1, const int16_t *v2, - int order, int shift); + int len); int32_t ff_scalarproduct_int16_sse2(const int16_t *v1, const int16_t *v2, - int order, int shift); + int len); int32_t ff_scalarproduct_and_madd_int16_mmx2(int16_t *v1, const int16_t *v2, const int16_t *v3, int order, int mul);