dsputil x86: remove deprecated parameter from scalarproduct_int16 prototype
authorChristophe GISQUET <christophe.gisquet@gmail.com>
Mon, 19 Mar 2012 15:34:39 +0000 (16:34 +0100)
committerRonald S. Bultje <rsbultje@gmail.com>
Wed, 4 Apr 2012 18:24:08 +0000 (11:24 -0700)
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
libavcodec/x86/dsputil_mmx.c

index 040e37b..192c5c3 100644 (file)
@@ -2576,9 +2576,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 order);
 int32_t ff_scalarproduct_int16_sse2(const int16_t *v1, const int16_t *v2,
-                                    int order, int shift);
+                                    int order);
 int32_t ff_scalarproduct_and_madd_int16_mmx2(int16_t *v1, const int16_t *v2,
                                              const int16_t *v3,
                                              int order, int mul);