Searched refs:uv_offset (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_mfqe.c | 214 int mi_offset, y_offset, uv_offset; in mfqe_partition() local 232 uv_offset = 16; in mfqe_partition() 236 uv_offset = 8; in mfqe_partition() 253 mfqe_block(bs_tmp, y + y_offset, u + uv_offset, v + uv_offset, y_stride, in mfqe_partition() 254 uv_stride, yd + y_offset, ud + uv_offset, vd + uv_offset, in mfqe_partition() 259 mfqe_block(bs_tmp, y + y_offset * y_stride, u + uv_offset * uv_stride, in mfqe_partition() 260 v + uv_offset * uv_stride, y_stride, uv_stride, in mfqe_partition() 261 yd + y_offset * yd_stride, ud + uv_offset * uvd_stride, in mfqe_partition() 262 vd + uv_offset * uvd_stride, yd_stride, uvd_stride, qdiff); in mfqe_partition() 265 u + uv_offset * uv_stride + uv_offset, in mfqe_partition() [all …]
|
/external/tensorflow/tensorflow/tools/android/test/jni/ |
D | yuv2rgb.cc | 77 const int uv_offset = (x >> 1) * uv_pixel_stride; in ConvertYUV420ToARGB8888() local 78 *out++ = YUV2RGB(pY[x], pU[uv_offset], pV[uv_offset]); in ConvertYUV420ToARGB8888()
|
/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/env/ |
D | ImageUtils.java | 189 int uv_offset = pUV + (i >> 1) * uvPixelStride; in convertYUV420ToARGB8888() local 193 0xff & uData[uv_offset], in convertYUV420ToARGB8888() 194 0xff & vData[uv_offset]); in convertYUV420ToARGB8888()
|
/external/webp/src/dec/ |
D | frame_dec.c | 178 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in ReconstructRow() local 180 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset; in ReconstructRow() 181 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; in ReconstructRow() 412 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; in FinishRow() local 414 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; in FinishRow() 415 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; in FinishRow() 442 io->u = dec->cache_u_ + uv_offset; in FinishRow() 443 io->v = dec->cache_v_ + uv_offset; in FinishRow()
|
/external/webp/src/enc/ |
D | picture_rescale_enc.c | 140 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; in WebPPictureCrop() local 143 WebPCopyPlane(pic->u + uv_offset, pic->uv_stride, in WebPPictureCrop() 145 WebPCopyPlane(pic->v + uv_offset, pic->uv_stride, in WebPPictureCrop()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_temporal_filter.c | 145 const int uv_offset = i * uv_stride + j; in temporal_filter_predictors_mb_c() local 151 CONVERT_TO_SHORTPTR(u_mb_ptr + uv_offset), uv_stride, in temporal_filter_predictors_mb_c() 157 CONVERT_TO_SHORTPTR(v_mb_ptr + uv_offset), uv_stride, in temporal_filter_predictors_mb_c() 162 vp9_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride, in temporal_filter_predictors_mb_c() 167 vp9_build_inter_predictor(v_mb_ptr + uv_offset, uv_stride, in temporal_filter_predictors_mb_c() 173 vp9_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride, in temporal_filter_predictors_mb_c() 178 vp9_build_inter_predictor(v_mb_ptr + uv_offset, uv_stride, in temporal_filter_predictors_mb_c()
|
/external/libyuv/files/util/ |
D | psnr_main.cc | 252 const int uv_offset = (do_swap_uv ? uv_size : 0); in UpdateMetrics() local 253 const uint8_t* const u_org = ch_org + y_size + uv_offset; in UpdateMetrics() 255 const uint8_t* const v_org = ch_org + y_size + (uv_size - uv_offset); in UpdateMetrics()
|
/external/libaom/libaom/av1/encoder/ |
D | firstpass.c | 371 const int y_offset, const int uv_offset, const BLOCK_SIZE fp_block_size, in firstpass_intra_prediction() argument 386 xd->plane[1].dst.buf = this_frame->u_buffer + uv_offset; in firstpass_intra_prediction() 387 xd->plane[2].dst.buf = this_frame->v_buffer + uv_offset; in firstpass_intra_prediction()
|