comparison dsputil.h @ 5255:669a97223dc7 libavcodec

make arguments to ssd_int8_vs_int16() const
author mru
date Sun, 08 Jul 2007 23:15:00 +0000
parents b7bae4ce8b07
children f44baba9edc3
comparison
equal deleted inserted replaced
5254:727a49c28c51 5255:669a97223dc7
198 me_cmp_func me_sub_cmp[5]; 198 me_cmp_func me_sub_cmp[5];
199 me_cmp_func mb_cmp[5]; 199 me_cmp_func mb_cmp[5];
200 me_cmp_func ildct_cmp[5]; //only width 16 used 200 me_cmp_func ildct_cmp[5]; //only width 16 used
201 me_cmp_func frame_skip_cmp[5]; //only width 8 used 201 me_cmp_func frame_skip_cmp[5]; //only width 8 used
202 202
203 int (*ssd_int8_vs_int16)(int8_t *pix1, int16_t *pix2, int size); 203 int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2,
204 int size);
204 205
205 /** 206 /**
206 * Halfpel motion compensation with rounding (a+b+1)>>1. 207 * Halfpel motion compensation with rounding (a+b+1)>>1.
207 * this is an array[4][4] of motion compensation functions for 4 208 * this is an array[4][4] of motion compensation functions for 4
208 * horizontal blocksizes (8,16) and the 4 halfpel positions<br> 209 * horizontal blocksizes (8,16) and the 4 halfpel positions<br>