/external/libvpx/libvpx/third_party/libyuv/source/ |
convert_from_argb.cc | 254 uint8* dst_uv, int dst_stride_uv, 262 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 268 !dst_y || !dst_uv || 312 if (IS_ALIGNED(dst_uv, 16) && IS_ALIGNED(dst_stride_uv, 16)) { 337 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); 342 dst_uv += dst_stride_uv; 346 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); 357 uint8* dst_uv, int dst_stride_uv, 365 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 371 !dst_y || !dst_uv || [all...] |
convert_from.cc | 364 uint8* dst_uv, int dst_stride_uv, 367 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 372 if (!src_y || !src_u || !src_v || !dst_y || !dst_uv || 381 dst_uv = dst_uv + (halfheight - 1) * dst_stride_uv; 406 IS_ALIGNED(dst_uv, 16) && IS_ALIGNED(dst_stride_uv, 16)) { 432 MergeUVRow_(src_u, src_v, dst_uv, halfwidth); 435 dst_uv += dst_stride_uv; 1096 uint8* dst_uv = dst_sample + width * height; local [all...] |
row_x86.asm | 109 ; void MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 113 cglobal MergeUVRow_%2, 4, 4, 3, src_u, src_v, dst_uv, pix
|
row_any.cc | 412 uint8* dst_uv, int width) { \ 414 ANYTOUV_SIMD(src_u, src_v, dst_uv, n); \ 417 dst_uv + n * 2, \
|
row_neon.cc | [all...] |
row_neon64.cc | [all...] |
row_common.cc | [all...] |
row_posix.cc | [all...] |
row_win.cc | [all...] |
/hardware/ti/omap4-aah/camera/V4LCameraAdapter/ |
V4LCameraAdapter.cpp | 956 unsigned char *dst_uv = dest + ( height * stride); local 979 *dst_uv = *bf; 980 dst_uv++; 984 dst_uv = dst_uv + (stride - width); 1001 " vst1.32 {d2,d3},[%[dst_uv]]! \n\t" 1010 : [dst_y] "+r" (dst_y), [dst_uv] "+r" (dst_uv), [src] "+r" (src), [n] "+r" (n) 1016 dst_uv = dst_uv + (stride - width) 1041 unsigned char *dst_uv = dest + (width * height); local [all...] |
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
convert_from.h | 67 uint8* dst_uv, int dst_stride_uv,
|
convert_from_argb.h | 132 uint8* dst_uv, int dst_stride_uv,
|
row.h | [all...] |
/hardware/intel/img/psb_video/src/ |
psb_output.c | 911 unsigned char *src_y, *src_uv, *dst_y, *dst_uv; local 958 dst_uv = image_data + obj_image->image.offsets[1]; 961 memcpy(dst_uv, src_uv, width); 962 dst_uv += obj_image->image.pitches[1]; 1056 unsigned char *source_y, *src_uv, *dst_y, *dst_uv; local 1223 unsigned short *source_uv, *dst_uv; local [all...] |
/hardware/intel/common/libmix/mix_video/src/ |
mixvideoformatenc_mpeg4.c | 1302 guint8 *dst_uv; local [all...] |
mixvideoformatenc_preview.c | 967 guint8 *dst_uv; local 1037 dst_uv = pvbuf + image->offsets[1]; 1041 dst_uv [j] = inbuf [width * height + i * width / 2 + j / 2]; 1042 dst_uv [j + 1] = 1045 dst_uv += image->pitches[1]; [all...] |
mixvideoformatenc_h264.c | 1366 guint8 *dst_uv; local [all...] |
/external/libyuv/files/source/ |
convert.cc | 70 uint8* dst_uv, int pix) { 95 uint8* dst_uv, int pix) { 107 "+r"(dst_uv), // %1 119 uint8* dst_uv, int pix) { 121 dst_uv[x] = (src_uv[x] + src_uv[src_uv_stride + x] + 1) >> 1; 150 uint8* dst_uv, int pix) = HalfRow_C; [all...] |