Searched refs:y_dst (Results 1 – 6 of 6) sorted by relevance
/external/webp/src/dec/ |
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() 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 …]
|
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()
|
/external/webp/src/enc/ |
D | filter_enc.c | 88 uint8_t* const y_dst = it->yuv_out2_ + Y_OFF_ENC; in DoFilter() local 93 memcpy(y_dst, it->yuv_out_, YUV_SIZE_ENC * sizeof(uint8_t)); in DoFilter() 96 VP8SimpleHFilter16i(y_dst, BPS, limit); in DoFilter() 97 VP8SimpleVFilter16i(y_dst, BPS, limit); in DoFilter() 100 VP8HFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter() 102 VP8VFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
|
/external/webrtc/webrtc/modules/video_processing/ |
D | video_denoiser.cc | 25 uint8_t* y_dst) { in TrailingReduction() argument 29 uint8_t* mb_dst = y_dst + (mb_row << 4) * stride_y + (mb_col << 4); in TrailingReduction() 85 uint8_t* y_dst = denoised_frame->buffer(kYPlane); in DenoiseFrame() local 96 uint8_t* mb_dst = y_dst + (mb_row << 4) * stride_y + (mb_col << 4); in DenoiseFrame() 139 TrailingReduction(mb_rows, mb_cols, y_src, stride_y, y_dst); in DenoiseFrame()
|
D | video_denoiser.h | 29 uint8_t* y_dst);
|
/external/libvpx/libvpx/vp8/common/ |
D | mfqe.c | 65 unsigned char *y_dst, int y_dst_stride, in apply_ifactor() argument 71 vp8_filter_by_weight16x16(y_src, y_src_stride, y_dst, y_dst_stride, in apply_ifactor() 79 vp8_filter_by_weight8x8(y_src, y_src_stride, y_dst, y_dst_stride, in apply_ifactor()
|