Home
last modified time | relevance | path

Searched refs:y_dst (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Dframe_dec.c77 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF; in ReconstructRow() local
83 y_dst[j * BPS - 1] = 129; in ReconstructRow()
92 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in ReconstructRow()
96 memset(y_dst - BPS - 1, 127, 16 + 4 + 1); in ReconstructRow()
109 Copy32b(&y_dst[j * BPS - 4], &y_dst[j * BPS + 12]); in ReconstructRow()
124 memcpy(y_dst - BPS, top_yuv[0].y, 16); in ReconstructRow()
131 uint32_t* const top_right = (uint32_t*)(y_dst - BPS + 16); in ReconstructRow()
145 uint8_t* const dst = y_dst + kScan[n]; in ReconstructRow()
151 VP8PredLuma16[pred_func](y_dst); in ReconstructRow()
154 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]); in ReconstructRow()
[all …]
Dio_dec.c28 uint8_t* const y_dst = buf->y + io->mb_y * buf->y_stride; in EmitYUV() local
37 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w); in EmitYUV()
/third_party/skia/third_party/externals/libwebp/src/dec/
Dframe_dec.c77 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF; in ReconstructRow() local
83 y_dst[j * BPS - 1] = 129; in ReconstructRow()
92 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in ReconstructRow()
96 memset(y_dst - BPS - 1, 127, 16 + 4 + 1); in ReconstructRow()
109 Copy32b(&y_dst[j * BPS - 4], &y_dst[j * BPS + 12]); in ReconstructRow()
124 memcpy(y_dst - BPS, top_yuv[0].y, 16); in ReconstructRow()
131 uint32_t* const top_right = (uint32_t*)(y_dst - BPS + 16); in ReconstructRow()
145 uint8_t* const dst = y_dst + kScan[n]; in ReconstructRow()
151 VP8PredLuma16[pred_func](y_dst); in ReconstructRow()
154 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]); in ReconstructRow()
[all …]
Dio_dec.c28 uint8_t* const y_dst = buf->y + (size_t)io->mb_y * buf->y_stride; in EmitYUV() local
35 WebPCopyPlane(io->y, io->y_stride, y_dst, buf->y_stride, mb_w, mb_h); in EmitYUV()
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dfilter_enc.c90 uint8_t* const y_dst = it->yuv_out2_ + Y_OFF_ENC; in DoFilter() local
95 memcpy(y_dst, it->yuv_out_, YUV_SIZE_ENC * sizeof(uint8_t)); in DoFilter()
98 VP8SimpleHFilter16i(y_dst, BPS, limit); in DoFilter()
99 VP8SimpleVFilter16i(y_dst, BPS, limit); in DoFilter()
102 VP8HFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
104 VP8VFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
/third_party/skia/third_party/externals/libwebp/src/enc/
Dfilter_enc.c90 uint8_t* const y_dst = it->yuv_out2_ + Y_OFF_ENC; in DoFilter() local
95 memcpy(y_dst, it->yuv_out_, YUV_SIZE_ENC * sizeof(uint8_t)); in DoFilter()
98 VP8SimpleHFilter16i(y_dst, BPS, limit); in DoFilter()
99 VP8SimpleVFilter16i(y_dst, BPS, limit); in DoFilter()
102 VP8HFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
104 VP8VFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
/third_party/pixman/pixman/
Dpixman-trap.c488 int y_dst, in pixman_composite_trapezoids() argument
514 pixman_rasterize_trapezoid (dst, trap, x_dst, y_dst); in pixman_composite_trapezoids()
543 x_dst + box.x1, y_dst + box.y1, in pixman_composite_trapezoids()
679 int y_dst, in pixman_composite_triangles() argument
688 x_src, y_src, x_dst, y_dst, in pixman_composite_triangles()
Dpixman.h1394 int y_dst,
1406 int y_dst,
/third_party/ffmpeg/libavcodec/
Dvp8.c2067 uint8_t *y_dst = dst[0]; in idct_mb() local
2074 s->vp8dsp.vp8_idct_dc_add(y_dst + 4 * x, in idct_mb()
2078 s->vp8dsp.vp8_idct_add(y_dst + 4 * x, in idct_mb()
2086 s->vp8dsp.vp8_idct_dc_add4y(y_dst, td->block[y], s->linesize); in idct_mb()
2089 y_dst += 4 * s->linesize; in idct_mb()