diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2009-08-27 15:38:59 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2009-08-27 15:38:59 +0000 |
commit | 50e23ae9d3681476392d630e3daba304fa211122 (patch) | |
tree | 250647b966bfb0881af4e17cd1dfbe10adf6300b /libavcodec/dsputil.h | |
parent | 0a68cd876e14f76a00df7bb8edbfeb350f8ef617 (diff) | |
download | ffmpeg-50e23ae9d3681476392d630e3daba304fa211122.tar.gz |
Mark parameter src of vector_clipf() as const
Originally committed as revision 19729 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |