Searched refs:y_dst (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | frame_dec.c | 77 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF; in ReconstructRow() local 83 y_dst[j * BPS - 1] = 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() 145 uint8_t* const dst = y_dst + kScan[n]; in ReconstructRow() 151 VP8PredLuma16[pred_func](y_dst); in ReconstructRow() 217 VP8SimpleHFilter16(y_dst, y_bps, limit + 4); in DoFilter() 220 VP8SimpleHFilter16i(y_dst, y_bps, limit); in DoFilter() 223 VP8SimpleVFilter16(y_dst, y_bps, limit + 4); in DoFilter() [all …]
|
A D | io_dec.c | 28 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()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | filter_enc.c | 90 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()
|
Completed in 6 milliseconds