HomeSort by relevance Sort by last modified time
    Searched refs:u_dst (Results 1 - 11 of 11) sorted by null

  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 214 unsigned char *y_dst, *u_dst, *v_dst; local
224 u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);
225 v_dst = u_dst;
242 u_dst[col * 2] = 128;
243 u_dst[col * 2 + 1] = 128;
245 u_dst += surface_image.pitches[1];
262 unsigned char *y_dst, *u_dst, *v_dst; local
292 u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]);
294 u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]);
297 u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1])
365 unsigned char *y_dst, *u_dst, *v_dst; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_video.h 94 uint8_t *u_dst = (uint8_t *)destination_data[2] + destination_pitches[2] * src_field; local
100 u_dst[x] = src[2*x];
103 u_dst += u_stride;
  /external/webp/src/dec/
frame_dec.c 78 uint8_t* const u_dst = dec->yuv_b_ + U_OFF; local
86 u_dst[j * BPS - 1] = 129;
92 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129;
97 memset(u_dst - BPS - 1, 127, 8 + 1);
112 Copy32b(&u_dst[j * BPS - 4], &u_dst[j * BPS + 4]);
125 memcpy(u_dst - BPS, top_yuv[0].u, 8);
162 VP8PredChroma8[pred_func](u_dst);
164 DoUVTransform(bits_uv >> 0, coeffs + 16 * 16, u_dst);
171 memcpy(top_yuv[0].u, u_dst + 7 * BPS, 8)
230 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; local
381 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; local
    [all...]
io_dec.c 29 uint8_t* const u_dst = buf->u + (io->mb_y >> 1) * buf->u_stride; local
40 memcpy(u_dst + j * buf->u_stride, io->u + j * io->uv_stride, uv_w);
  /external/webp/src/enc/
filter_enc.c 89 uint8_t* const u_dst = it->yuv_out2_ + U_OFF_ENC; local
101 VP8HFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh);
103 VP8VFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh);
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.cc 86 uint8_t* u_dst = denoised_frame->buffer(kUPlane); local
130 uint8_t* mb_dst_u = u_dst + (mb_row << 3) * stride_u + (mb_col << 3);
  /external/libvpx/libvpx/vp8/common/
mfqe.c 67 int uv_src_stride, unsigned char *u_dst,
73 vp8_filter_by_weight8x8(u_src, uv_src_stride, u_dst, uv_dst_stride,
81 vp8_filter_by_weight4x4(u_src, uv_src_stride, u_dst, uv_dst_stride,
  /hardware/intel/common/libva/test/encode/
mpeg2enc.c 439 unsigned char *y_dst, *u_dst, *v_dst; local
460 u_dst = surface_p + surface_image.offsets[1]; /* UV offset for NV12 */
473 u_dst[col * 2] = u_src[col];
474 u_dst[col * 2 + 1] = v_src[col];
477 u_dst += surface_image.pitches[1];
484 u_dst[col] = u_src[col];
488 u_dst += surface_image.pitches[1];
    [all...]
mpeg2vaenc.c 439 unsigned char *y_dst, *u_dst, *v_dst; local
460 u_dst = surface_p + surface_image.offsets[1]; /* UV offset for NV12 */
473 u_dst[col * 2] = u_src[col];
474 u_dst[col * 2 + 1] = v_src[col];
477 u_dst += surface_image.pitches[1];
484 u_dst[col] = u_src[col];
488 u_dst += surface_image.pitches[1];
    [all...]
avcenc.c 360 unsigned char *y_dst, *u_dst, *v_dst; local
381 u_dst = surface_p + surface_image.offsets[1]; /* UV offset for NV12 */
394 u_dst[col * 2] = u_src[col];
395 u_dst[col * 2 + 1] = v_src[col];
398 u_dst += surface_image.pitches[1];
407 u_dst = surface_p + surface_image.offsets[U];
411 memcpy(u_dst, u_src, surface_image.width / 2);
413 u_dst += surface_image.pitches[U];
    [all...]
  /hardware/intel/common/libva/test/transcode/
mpeg2transcode.cpp 2163 unsigned char *y_dst, *u_dst, *v_dst; local
    [all...]

Completed in 1044 milliseconds