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.h | |
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.h')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index ecf8e62107..2d312e5196 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -200,7 +200,8 @@ typedef struct DSPContext { me_cmp_func ildct_cmp[5]; //only width 16 used me_cmp_func frame_skip_cmp[5]; //only width 8 used - int (*ssd_int8_vs_int16)(int8_t *pix1, int16_t *pix2, int size); + int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2, + int size); /** * Halfpel motion compensation with rounding (a+b+1)>>1. |