HomeSort by relevance Sort by last modified time
    Searched refs:VP8_SSIM_KERNEL (Results 1 - 5 of 5) sorted by null

  /external/webp/src/enc/
picture_psnr_enc.c 79 const int w0 = (w < VP8_SSIM_KERNEL) ? w : VP8_SSIM_KERNEL;
80 const int w1 = w - VP8_SSIM_KERNEL - 1;
81 const int h0 = (h < VP8_SSIM_KERNEL) ? h : VP8_SSIM_KERNEL;
82 const int h1 = h - VP8_SSIM_KERNEL - 1;
95 const int off1 = x - VP8_SSIM_KERNEL + (y - VP8_SSIM_KERNEL) * src_stride;
96 const int off2 = x - VP8_SSIM_KERNEL + (y - VP8_SSIM_KERNEL) * ref_stride
    [all...]
filter_enc.c 115 for (y = VP8_SSIM_KERNEL; y < 16 - VP8_SSIM_KERNEL; y++) {
116 for (x = VP8_SSIM_KERNEL; x < 16 - VP8_SSIM_KERNEL; x++) {
  /external/webp/src/dsp/
enc.c 697 static const uint32_t kWeight[2 * VP8_SSIM_KERNEL + 1] = {
739 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL;
740 const int ymax = (yo + VP8_SSIM_KERNEL > H - 1) ? H - 1
741 : yo + VP8_SSIM_KERNEL;
742 const int xmin = (xo - VP8_SSIM_KERNEL < 0) ? 0 : xo - VP8_SSIM_KERNEL;
743 const int xmax = (xo + VP8_SSIM_KERNEL > W - 1) ? W - 1
744 : xo + VP8_SSIM_KERNEL;
750 const uint32_t w = kWeight[VP8_SSIM_KERNEL + x - xo
    [all...]
dsp.h 264 // The non-clipped version assumes stats->w = (2 * VP8_SSIM_KERNEL + 1)^2.
268 #define VP8_SSIM_KERNEL 3 // total size of the kernel: 2 * VP8_SSIM_KERNEL + 1
enc_sse2.c     [all...]

Completed in 51 milliseconds