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/i386 | |
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/i386')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 0705fd47a1..b9b365869a 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -1871,7 +1871,7 @@ DCT_SAD_FUNC(ssse3) #undef HSUM #undef DCT_SAD -static int ssd_int8_vs_int16_mmx(int8_t *pix1, int16_t *pix2, int size){ +static int ssd_int8_vs_int16_mmx(const int8_t *pix1, const int16_t *pix2, int size){ int sum; long i=size; asm volatile( |