From 50e23ae9d3681476392d630e3daba304fa211122 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 27 Aug 2009 15:38:59 +0000 Subject: Mark parameter src of vector_clipf() as const Originally committed as revision 19729 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dsputil.h') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 032dd1d43c..bad2d9e648 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -396,7 +396,7 @@ typedef struct DSPContext { void (*vector_fmul_window)(float *dst, const float *src0, const float *src1, const float *win, float add_bias, int len); /* assume len is a multiple of 8, and arrays are 16-byte aligned */ void (*int32_to_float_fmul_scalar)(float *dst, const int *src, float mul, int len); - void (*vector_clipf)(float *dst /* align 16 */, float *src /* align 16 */, float min, float max, int len /* align 16 */); + void (*vector_clipf)(float *dst /* align 16 */, const float *src /* align 16 */, float min, float max, int len /* align 16 */); /* C version: convert floats from the range [384.0,386.0] to ints in [-32768,32767] * simd versions: convert floats from [-32768.0,32767.0] without rescaling and arrays are 16byte aligned */ -- cgit v1.2.3