diff x86/dsputil_mmx.c @ 10105:7775f6627612 libavcodec

Mark parameter src of vector_clipf() as const
author vitor
date Thu, 27 Aug 2009 15:38:59 +0000
parents 0fa3d21b317e
children 3b61bc6ce377
line wrap: on
line diff
--- a/x86/dsputil_mmx.c	Thu Aug 27 14:49:36 2009 +0000
+++ b/x86/dsputil_mmx.c	Thu Aug 27 15:38:59 2009 +0000
@@ -2346,7 +2346,7 @@
     );
 }
 
-static void vector_clipf_sse(float *dst, float *src, float min, float max,
+static void vector_clipf_sse(float *dst, const float *src, float min, float max,
                              int len)
 {
     x86_reg i = (len-16)*4;