Home
last modified time | relevance | path

Searched refs:u_dst (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/3rdparty/libwebp/dec/
Dframe.c68 uint8_t* const u_dst = dec->cache_u_ + ctx->id_ * 8 * uv_bps + mb_x * 8; in DoFilter() local
74 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
78 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()
82 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
86 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()
557 uint8_t* const u_dst = dec->yuv_b_ + U_OFF; in VP8ReconstructBlock() local
567 Copy32b(&u_dst[j * BPS - 4], &u_dst[j * BPS + 4]); in VP8ReconstructBlock()
575 u_dst[j * BPS - 1] = 129; in VP8ReconstructBlock()
580 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in VP8ReconstructBlock()
593 memcpy(u_dst - BPS, top_u, 8); in VP8ReconstructBlock()
[all …]
Dio.c32 uint8_t* const u_dst = buf->u + (io->mb_y >> 1) * buf->u_stride; in EmitYUV() local
43 memcpy(u_dst + j * buf->u_stride, io->u + j * io->uv_stride, uv_w); in EmitYUV()
/external/webp/src/dec/
Dframe.c78 uint8_t* const u_dst = dec->yuv_b_ + U_OFF; in ReconstructRow() local
86 u_dst[j * BPS - 1] = 129; in ReconstructRow()
92 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in ReconstructRow()
97 memset(u_dst - BPS - 1, 127, 8 + 1); in ReconstructRow()
112 Copy32b(&u_dst[j * BPS - 4], &u_dst[j * BPS + 4]); in ReconstructRow()
125 memcpy(u_dst - BPS, top_yuv[0].u, 8); in ReconstructRow()
162 VP8PredChroma8[pred_func](u_dst); in ReconstructRow()
164 DoUVTransform(bits_uv >> 0, coeffs + 16 * 16, u_dst); in ReconstructRow()
171 memcpy(top_yuv[0].u, u_dst + 7 * BPS, 8); in ReconstructRow()
186 memcpy(u_out + j * dec->cache_uv_stride_, u_dst + j * BPS, 8); in ReconstructRow()
[all …]
Dio.c29 uint8_t* const u_dst = buf->u + (io->mb_y >> 1) * buf->u_stride; in EmitYUV() local
40 memcpy(u_dst + j * buf->u_stride, io->u + j * io->uv_stride, uv_w); in EmitYUV()
/external/webp/src/enc/
Dfilter.c89 uint8_t* const u_dst = it->yuv_out2_ + U_OFF_ENC; in DoFilter() local
101 VP8HFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
103 VP8VFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
/external/webrtc/webrtc/modules/video_processing/
Dvideo_denoiser.cc86 uint8_t* u_dst = denoised_frame->buffer(kUPlane); in DenoiseFrame() local
130 uint8_t* mb_dst_u = u_dst + (mb_row << 3) * stride_u + (mb_col << 3); in DenoiseFrame()
/external/libvpx/libvpx/vp8/common/
Dmfqe.c79 unsigned char *u_dst, in apply_ifactor() argument
88 vp8_filter_by_weight8x8(u_src, uv_src_stride, u_dst, uv_dst_stride, src_weight); in apply_ifactor()
94 vp8_filter_by_weight4x4(u_src, uv_src_stride, u_dst, uv_dst_stride, src_weight); in apply_ifactor()
/external/opencv3/3rdparty/libwebp/enc/
Dfilter.c217 uint8_t* const u_dst = it->yuv_out2_ + U_OFF; in DoFilter() local
229 VP8EncHFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
231 VP8EncVFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()