Home
last modified time | relevance | path

Searched refs:u_src (Results 1 – 7 of 7) sorted by relevance

/hardware/intel/common/libva/test/videoprocess/
Dvideoprocess.cpp261 unsigned char *y_src, *u_src, *v_src; in upload_yv12_frame_to_yuv_surface() local
286 u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; in upload_yv12_frame_to_yuv_surface()
314 memcpy(u_dst, u_src, surface_image.width/2); in upload_yv12_frame_to_yuv_surface()
317 u_src += surface_image.width/2; in upload_yv12_frame_to_yuv_surface()
330 u_dst[col * 2] = u_src[col]; in upload_yv12_frame_to_yuv_surface()
335 u_src += (surface_image.width / 2); in upload_yv12_frame_to_yuv_surface()
364 unsigned char *y_src, *u_src, *v_src; in store_yuv_surface_to_yv12_frame() local
394 u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); in store_yuv_surface_to_yv12_frame()
396 u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); in store_yuv_surface_to_yv12_frame()
399 u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); in store_yuv_surface_to_yv12_frame()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dmfqe.c75 unsigned char *u_src, in apply_ifactor() argument
87 vp8_filter_by_weight8x8(u_src, uv_src_stride, u_dst, uv_dst_stride, src_weight); in apply_ifactor()
93 vp8_filter_by_weight4x4(u_src, uv_src_stride, u_dst, uv_dst_stride, src_weight); in apply_ifactor()
/hardware/intel/common/libva/test/encode/
Dmpeg2enc.c438 unsigned char *y_src, *u_src, *v_src; in upload_yuv_to_surface() local
456 u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */ in upload_yuv_to_surface()
473 u_dst[col * 2] = u_src[col]; in upload_yuv_to_surface()
478 u_src += (ctx->width / 2); in upload_yuv_to_surface()
484 u_dst[col] = u_src[col]; in upload_yuv_to_surface()
490 u_src += (ctx->width / 2); in upload_yuv_to_surface()
Dmpeg2vaenc.c438 unsigned char *y_src, *u_src, *v_src; in upload_yuv_to_surface() local
456 u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */ in upload_yuv_to_surface()
473 u_dst[col * 2] = u_src[col]; in upload_yuv_to_surface()
478 u_src += (ctx->width / 2); in upload_yuv_to_surface()
484 u_dst[col] = u_src[col]; in upload_yuv_to_surface()
490 u_src += (ctx->width / 2); in upload_yuv_to_surface()
Davcenc.c359 unsigned char *y_src, *u_src, *v_src; in upload_yuv_to_surface() local
377 u_src = newImageBuffer + y_size; /* UV offset for NV12 */ in upload_yuv_to_surface()
394 u_dst[col * 2] = u_src[col]; in upload_yuv_to_surface()
399 u_src += (picture_width / 2); in upload_yuv_to_surface()
411 memcpy(u_dst, u_src, surface_image.width / 2); in upload_yuv_to_surface()
415 u_src += (picture_width / 2); in upload_yuv_to_surface()
/hardware/intel/common/libva/test/transcode/
Dmpeg2transcode.cpp2162 unsigned char *y_src, *u_src, *v_src; in upload_yuv_to_surface() local
2181 u_src = newImageBuffer + y_size; /* UV offset for NV12 */ in upload_yuv_to_surface()
2196 memcpy(u_dst, u_src, picture_width*picture_height/2); in upload_yuv_to_surface()
2202 u_dst[col * 2] = u_src[col]; in upload_yuv_to_surface()
2207 u_src += (picture_width / 2); in upload_yuv_to_surface()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
Ddecodeframe.c418 unsigned char *u_src, in yv12_extend_frame_left_right_c() argument
463 src_ptr1 = u_src; in yv12_extend_frame_left_right_c()