HomeSort by relevance Sort by last modified time
    Searched refs:uv_offset (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/remoting/base/
util.cc 76 int uv_offset = - CalculateUVOffset(source_buffer_rect.left(), local
95 uv_offset += CalculateUVOffset(inner_rect.left(), inner_rect.top(),
101 source_uplane + uv_offset, source_uvstride,
102 source_vplane + uv_offset, source_uvstride,
119 uv_offset += CalculateUVOffset(offset.x(), offset.y(), source_uvstride);
130 source_uplane + uv_offset,
131 source_vplane + uv_offset,
148 source_uplane + uv_offset,
149 source_vplane + uv_offset,
  /external/chromium_org/media/filters/
skcanvas_video_renderer.cc 90 size_t uv_offset = 0; local
100 uv_offset = (video_frame->stride(media::VideoFrame::kUPlane) *
111 video_frame->data(media::VideoFrame::kUPlane) + uv_offset,
113 video_frame->data(media::VideoFrame::kVPlane) + uv_offset,
124 video_frame->data(media::VideoFrame::kUPlane) + uv_offset,
125 video_frame->data(media::VideoFrame::kVPlane) + uv_offset,
139 video_frame->data(media::VideoFrame::kUPlane) + uv_offset,
141 video_frame->data(media::VideoFrame::kVPlane) + uv_offset,
155 video_frame->data(media::VideoFrame::kUPlane) + uv_offset,
156 video_frame->data(media::VideoFrame::kVPlane) + uv_offset,
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
msm_q6venc.h 69 unsigned long uv_offset; member in struct:encode_param
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
msm_q6venc.h 69 unsigned long uv_offset; member in struct:encode_param
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
denoising_sse2.c 28 int y_offset, int uv_offset)
37 (void)uv_offset;
  /external/chromium_org/remoting/codec/
video_decoder_vpx.cc 244 int uv_offset = CalculateUVOffset(source_rect.left(), source_rect.top(), local
247 last_image_->planes[1] + uv_offset,
248 last_image_->planes[2] + uv_offset,
video_encoder_vpx.cc 414 int uv_offset = uv_stride * rect.top() / 2 + rect.left() / 2; local
417 u_data + uv_offset, uv_stride,
418 v_data + uv_offset, uv_stride,
  /external/chromium_org/third_party/libwebp/enc/
picture_rescale.c 146 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; local
149 CopyPlane(pic->u + uv_offset, pic->uv_stride,
151 CopyPlane(pic->v + uv_offset, pic->uv_stride,
  /external/webp/src/enc/
picture_rescale.c 146 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; local
149 CopyPlane(pic->u + uv_offset, pic->uv_stride,
151 CopyPlane(pic->v + uv_offset, pic->uv_stride,
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
denoising_neon.c 51 int y_offset, int uv_offset) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
denoising_neon.c 51 int y_offset, int uv_offset) {
  /external/chromium_org/third_party/libwebp/dec/
frame.c 254 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; local
256 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset;
257 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset;
284 io->u = dec->cache_u_ + uv_offset;
285 io->v = dec->cache_v_ + uv_offset;
812 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; local
814 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset;
815 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset;
  /external/webp/src/dec/
frame.c 254 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; local
256 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset;
257 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset;
284 io->u = dec->cache_u_ + uv_offset;
285 io->v = dec->cache_v_ + uv_offset;
812 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; local
814 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset;
815 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 57 int uv_offset)
68 (void)uv_offset;
  /external/chromium_org/media/base/simd/
convert_rgb_to_yuv_sse2.cc 268 __m128i uv_offset = _mm_slli_epi32(y_offset, 3); local
269 u_a_b = _mm_add_epi32(u_a_b, uv_offset);
282 v_a_b = _mm_add_epi32(v_a_b, uv_offset);
  /external/chromium_org/media/base/
video_util.cc 309 const int uv_offset = region_in_frame.x() / 2 local
314 frame->data(kU) + uv_offset,
315 frame->data(kV) + uv_offset,
  /external/libvpx/libvpx/vp8/encoder/x86/
denoising_sse2.c 28 int y_offset, int uv_offset)
  /external/chromium_org/third_party/libyuv/util/
psnr_main.cc 242 const int uv_offset = (do_swap_uv ? uv_size : 0); local
243 const uint8* const u_org = ch_org + y_size + uv_offset;
245 const uint8* const v_org = ch_org + y_size + (uv_size - uv_offset);
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 57 int uv_offset)
  /external/libvpx/generic/
vp8_rtcd.h 65 int vp8_denoiser_filter_c(struct yv12_buffer_config* mc_running_avg, struct yv12_buffer_config* running_avg, struct macroblock* signal, unsigned int motion_magnitude2, int y_offset, int uv_offset);
  /external/libvpx/mips/
vp8_rtcd.h 65 int vp8_denoiser_filter_c(struct yv12_buffer_config* mc_running_avg, struct yv12_buffer_config* running_avg, struct macroblock* signal, unsigned int motion_magnitude2, int y_offset, int uv_offset);
  /external/libvpx/mips-dspr2/
vp8_rtcd.h 69 int vp8_denoiser_filter_c(struct yv12_buffer_config* mc_running_avg, struct yv12_buffer_config* running_avg, struct macroblock* signal, unsigned int motion_magnitude2, int y_offset, int uv_offset);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/
vp8_rtcd.h 289 int vp8_denoiser_filter_c(struct yv12_buffer_config* mc_running_avg, struct yv12_buffer_config* running_avg, struct macroblock* signal, unsigned int motion_magnitude2, int y_offset, int uv_offset);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/
vp8_rtcd.h 289 int vp8_denoiser_filter_c(struct yv12_buffer_config* mc_running_avg, struct yv12_buffer_config* running_avg, struct macroblock* signal, unsigned int motion_magnitude2, int y_offset, int uv_offset);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
vp8_rtcd.h 307 int vp8_denoiser_filter_c(struct yv12_buffer_config* mc_running_avg, struct yv12_buffer_config* running_avg, struct macroblock* signal, unsigned int motion_magnitude2, int y_offset, int uv_offset);

Completed in 724 milliseconds

1 2