[FFmpeg-cvslog] dsputil_mmx: fix scalarproduct prototypes
Michael Niedermayer
git at videolan.org
Sun Apr 1 22:50:24 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Apr 1 22:04:05 2012 +0200| [226671ee2fb37e1f231b709e56c538b8765e7ff6] | committer: Michael Niedermayer
dsputil_mmx: fix scalarproduct prototypes
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=226671ee2fb37e1f231b709e56c538b8765e7ff6
---
libavcodec/x86/dsputil_mmx.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c
index c887d6d..3d85bcf 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);
More information about the ffmpeg-cvslog
mailing list