diff options
author | Måns Rullgård <mans@mansr.com> | 2007-07-08 23:15:00 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-07-08 23:15:00 +0000 |
commit | a00177a9520f05e74e895ef60b43cc681d4e0574 (patch) | |
tree | 0b19875abb702aaf838b7c4218af166ab09ce431 /libavcodec/dsputil.c | |
parent | bad700e34652ad45071321f8782d85d3685f0da8 (diff) | |
download | ffmpeg-a00177a9520f05e74e895ef60b43cc681d4e0574.tar.gz |
make arguments to ssd_int8_vs_int16() const
Originally committed as revision 9548 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index cf08957203..fd064d6169 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3697,7 +3697,8 @@ static int vsse16_c(/*MpegEncContext*/ void *c, uint8_t *s1, uint8_t *s2, int st return score; } -static int ssd_int8_vs_int16_c(int8_t *pix1, int16_t *pix2, int size){ +static int ssd_int8_vs_int16_c(const int8_t *pix1, const int16_t *pix2, + int size){ int score=0; int i; for(i=0; i<size; i++) |