Lines Matching refs:VP8_SSIM_KERNEL
25 static const uint32_t kWeight[2 * VP8_SSIM_KERNEL + 1] = {
67 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL; in SSIMGetClipped_C()
68 const int ymax = (yo + VP8_SSIM_KERNEL > H - 1) ? H - 1 in SSIMGetClipped_C()
69 : yo + VP8_SSIM_KERNEL; in SSIMGetClipped_C()
70 const int xmin = (xo - VP8_SSIM_KERNEL < 0) ? 0 : xo - VP8_SSIM_KERNEL; in SSIMGetClipped_C()
71 const int xmax = (xo + VP8_SSIM_KERNEL > W - 1) ? W - 1 in SSIMGetClipped_C()
72 : xo + VP8_SSIM_KERNEL; in SSIMGetClipped_C()
78 const uint32_t w = kWeight[VP8_SSIM_KERNEL + x - xo] in SSIMGetClipped_C()
79 * kWeight[VP8_SSIM_KERNEL + y - yo]; in SSIMGetClipped_C()
97 for (y = 0; y <= 2 * VP8_SSIM_KERNEL; ++y, src1 += stride1, src2 += stride2) { in SSIMGet_C()
98 for (x = 0; x <= 2 * VP8_SSIM_KERNEL; ++x) { in SSIMGet_C()