Searched refs:stride1 (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/extras/ |
A D | get_disto.c | 73 static int DiffScaleChannel(uint8_t* src1, int stride1, in DiffScaleChannel() argument 79 uint8_t* const ptr1 = src1 + y * stride1; in DiffScaleChannel() 88 if (do_scaling) RescalePlane(src1, w, h, x_stride, stride1, max); in DiffScaleChannel() 134 static double SSIMGetClipped(const uint8_t* src1, int stride1, in SSIMGetClipped() argument 143 src1 += ymin * stride1; in SSIMGetClipped() 145 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) { in SSIMGetClipped() 163 static int SSIMScaleChannel(uint8_t* src1, int stride1, in SSIMScaleChannel() argument 175 plane1[x + y * w] = src1[x * x_stride + y * stride1]; in SSIMScaleChannel() 188 src1[x * x_stride + y * stride1] = (diff > 255) ? 255u : (uint8_t)diff; in SSIMScaleChannel() 193 if (do_scaling) RescalePlane(src1, w, h, x_stride, stride1, max); in SSIMScaleChannel()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | ssim.c | 63 static double SSIMGetClipped_C(const uint8_t* src1, int stride1, in SSIMGetClipped_C() argument 74 src1 += ymin * stride1; in SSIMGetClipped_C() 76 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) { in SSIMGetClipped_C() 93 static double SSIMGet_C(const uint8_t* src1, int stride1, in SSIMGet_C() argument 97 for (y = 0; y <= 2 * VP8_SSIM_KERNEL; ++y, src1 += stride1, src2 += stride2) { in SSIMGet_C()
|
A D | ssim_sse2.c | 121 src1 += stride1; \ 125 static double SSIMGet_SSE2(const uint8_t* src1, int stride1, in SSIMGet_SSE2() argument
|
A D | dsp.h | 345 typedef double (*VP8SSIMGetClippedFunc)(const uint8_t* src1, int stride1, 353 typedef double (*VP8SSIMGetFunc)(const uint8_t* src1, int stride1,
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | picture_psnr_enc.c | 204 const size_t stride1 = 4 * (size_t)p1.argb_stride; in WebPPictureDistortion() local 208 (const uint8_t*)p1.argb + offset, stride1, in WebPPictureDistortion()
|
Completed in 10 milliseconds