Home
last modified time | relevance | path

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

/external/webp/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()
/external/webp/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()
/external/webrtc/modules/video_processing/
Dvideo_denoiser.cc177 uint8_t* y_dst, in CopySrcOnMOB() argument
184 uint8_t* mb_dst_base = y_dst + (mb_row << 4) * stride_dst; in CopySrcOnMOB()
205 uint8_t* y_dst, in CopyLumaOnMargin() argument
210 uint8_t* margin_y_dst = y_dst + (mb_rows_ << 4) * stride_dst; in CopyLumaOnMargin()
217 uint8_t* margin_y_dst = y_dst + (mb_cols_ << 4); in CopyLumaOnMargin()
240 uint8_t* y_dst = dst->MutableDataY(); in DenoiseFrame() local
257 uint8_t* mb_dst_base = y_dst + (mb_row << 4) * stride_y_dst; in DenoiseFrame()
326 CopySrcOnMOB(y_src, stride_y_src, y_dst, stride_y_dst); in DenoiseFrame()
331 CopyLumaOnMargin(y_src, stride_y_src, y_dst, stride_y_dst); in DenoiseFrame()
Dvideo_denoiser.h55 uint8_t* y_dst,
61 uint8_t* y_dst,
/external/libvpx/libvpx/vp8/common/
Dmfqe.c66 unsigned char *y_dst, int y_dst_stride, in apply_ifactor() argument
72 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()