1 typedef int __attribute__ ((const)) (*x264_pixel_cmp_t)(void); 2 3 typedef struct { 4 x264_pixel_cmp_t ssd; 5 } x264_pixel_function_t; 6 x264_pixel_ssd_wxh(x264_pixel_function_t * pf,int i_width)7int x264_pixel_ssd_wxh (x264_pixel_function_t *pf, int i_width) { 8 int i_ssd = 0, x; 9 for (x = 0; x < i_width; x++) 10 i_ssd += pf->ssd(); 11 return i_ssd; 12 } 13