[FFmpeg-cvslog] dsputil x86: remove deprecated parameter from scalarproduct_int16 prototype

Christophe GISQUET git at videolan.org
Thu Apr 5 22:44:33 CEST 2012


ffmpeg | branch: master | Christophe GISQUET <christophe.gisquet at gmail.com> | Mon Mar 19 16:34:39 2012 +0100| [cd88105f6fddf04fb04fe6c57cbaac5f6037c6a6] | committer: Ronald S. Bultje

dsputil x86: remove deprecated parameter from scalarproduct_int16 prototype

Signed-off-by: Ronald S. Bultje <rsbultje at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cd88105f6fddf04fb04fe6c57cbaac5f6037c6a6
---

 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 040e37b..192c5c3 100644
--- a/libavcodec/x86/dsputil_mmx.c
+++ b/libavcodec/x86/dsputil_mmx.c
@@ -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);



More information about the ffmpeg-cvslog mailing list