diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2010-06-27 15:11:38 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-06-27 15:11:38 +0000 |
commit | b3858964d6ddc61c89588be64ef6b2290debd136 (patch) | |
tree | e64d19c6da795d2561927a739b91eb8ad95239c1 /libavcodec/dsputil.c | |
parent | 1444438ab09878d8ab6e5953db4882b90f018995 (diff) | |
download | ffmpeg-b3858964d6ddc61c89588be64ef6b2290debd136.tar.gz |
Add const to some pointer parameters.
Patch by Eli Friedman, eli D friedman A gmail
Originally committed as revision 23826 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 0db637a501..cf333c95e4 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3988,7 +3988,7 @@ void ff_float_to_int16_interleave_c(int16_t *dst, const float **src, long len, i } } -static int32_t scalarproduct_int16_c(int16_t * v1, int16_t * v2, int order, int shift) +static int32_t scalarproduct_int16_c(const int16_t * v1, const int16_t * v2, int order, int shift) { int res = 0; @@ -3998,7 +3998,7 @@ static int32_t scalarproduct_int16_c(int16_t * v1, int16_t * v2, int order, int return res; } -static int32_t scalarproduct_and_madd_int16_c(int16_t *v1, int16_t *v2, int16_t *v3, int order, int mul) +static int32_t scalarproduct_and_madd_int16_c(int16_t *v1, const int16_t *v2, const int16_t *v3, int order, int mul) { int res = 0; while (order--) { |