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

1 2 3 4

  /external/libvpx/libvpx/vp8/common/
setupintrarecon.h 21 int uv_stride)
29 u_buffer[uv_stride *i] = (unsigned char) 129;
32 v_buffer[uv_stride *i] = (unsigned char) 129;
setupintrarecon.c 24 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
26 ybf->u_buffer[ybf->uv_stride *i - 1] = (unsigned char) 129;
28 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
30 ybf->v_buffer[ybf->uv_stride *i - 1] = (unsigned char) 129;
37 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
38 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
mfqe.c 128 int uv_stride,
158 usad = (vp8_variance8x8(u, uv_stride, ud, uvd_stride, &sse));
160 vsad = (vp8_variance8x8(v, uv_stride, vd, uvd_stride, &sse));
164 usad = (vp8_sad8x8(u, uv_stride, ud, uvd_stride, UINT_MAX) + 32) >> 6;
165 vsad = (vp8_sad8x8(v, uv_stride, vd, uvd_stride, UINT_MAX)+ 32) >> 6;
175 usad = (vp8_variance4x4(u, uv_stride, ud, uvd_stride, &sse));
177 vsad = (vp8_variance4x4(v, uv_stride, vd, uvd_stride, &sse));
181 usad = (vp8_sad4x4(u, uv_stride, ud, uvd_stride, UINT_MAX) + 8) >> 4;
182 vsad = (vp8_sad4x4(v, uv_stride, vd, uvd_stride, UINT_MAX) + 8) >> 4;
217 u, v, uv_stride,
    [all...]
extend.c 93 copy_and_extend_plane(src->u_buffer, src->uv_stride,
94 dst->u_buffer, dst->uv_stride,
98 copy_and_extend_plane(src->v_buffer, src->uv_stride,
99 dst->v_buffer, dst->uv_stride,
116 int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1);
117 int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1);
144 src->uv_stride,
146 dst->uv_stride,
151 src->uv_stride,
153 dst->uv_stride,
    [all...]
loopfilter_filters.c 358 unsigned char *v_ptr, int y_stride, int uv_stride,
364 vp8_mbloop_filter_horizontal_edge_c(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
367 vp8_mbloop_filter_horizontal_edge_c(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
372 unsigned char *v_ptr, int y_stride, int uv_stride,
378 vp8_mbloop_filter_vertical_edge_c(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
381 vp8_mbloop_filter_vertical_edge_c(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
386 unsigned char *v_ptr, int y_stride, int uv_stride,
394 vp8_loop_filter_horizontal_edge_c(u_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1);
397 vp8_loop_filter_horizontal_edge_c(v_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1)
    [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
loopfilter_altivec.c 56 int y_stride, int uv_stride, loop_filter_info *lfi)
61 mbloop_filter_horizontal_edge_uv_ppc(u_ptr, v_ptr, uv_stride, lfi->mbflim, lfi->lim, lfi->thr);
65 int y_stride, int uv_stride, loop_filter_info *lfi)
69 (void)uv_stride;
75 int y_stride, int uv_stride, loop_filter_info *lfi)
80 mbloop_filter_vertical_edge_uv_ppc(u_ptr, v_ptr, uv_stride, lfi->mbflim, lfi->lim, lfi->thr);
84 int y_stride, int uv_stride, loop_filter_info *lfi)
88 (void)uv_stride;
94 int y_stride, int uv_stride, loop_filter_info *lfi)
102 loop_filter_horizontal_edge_uv_ppc(u_ptr + 4 * uv_stride, v_ptr + 4 * uv_stride, uv_stride, lfi->flim, lfi->lim, lfi->thr)
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/
loopfilter_arm.c 50 int y_stride, int uv_stride, loop_filter_info *lfi)
55 vp8_mbloop_filter_horizontal_edge_armv6(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
58 vp8_mbloop_filter_horizontal_edge_armv6(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
63 int y_stride, int uv_stride, loop_filter_info *lfi)
68 vp8_mbloop_filter_vertical_edge_armv6(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
71 vp8_mbloop_filter_vertical_edge_armv6(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
76 int y_stride, int uv_stride, loop_filter_info *lfi)
83 vp8_loop_filter_horizontal_edge_armv6(u_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1);
86 vp8_loop_filter_horizontal_edge_armv6(v_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1)
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_x86.c 51 int y_stride, int uv_stride, loop_filter_info *lfi)
56 vp8_mbloop_filter_horizontal_edge_mmx(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
59 vp8_mbloop_filter_horizontal_edge_mmx(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
65 int y_stride, int uv_stride, loop_filter_info *lfi)
70 vp8_mbloop_filter_vertical_edge_mmx(u_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
73 vp8_mbloop_filter_vertical_edge_mmx(v_ptr, uv_stride, lfi->mblim, lfi->lim, lfi->hev_thr, 1);
79 int y_stride, int uv_stride, loop_filter_info *lfi)
86 vp8_loop_filter_horizontal_edge_mmx(u_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1);
89 vp8_loop_filter_horizontal_edge_mmx(v_ptr + 4 * uv_stride, uv_stride, lfi->blim, lfi->lim, lfi->hev_thr, 1)
    [all...]
  /external/chromium_org/media/cdm/ppapi/
fake_cdm_video_decoder.cc 60 int uv_stride = local
66 int u_offset = v_offset + uv_stride * uv_rows + kPlanePadding;
67 int frame_size = u_offset + uv_stride * uv_rows + kPlanePadding;
78 decoded_frame->SetStride(cdm::VideoFrame::kVPlane, uv_stride);
79 decoded_frame->SetStride(cdm::VideoFrame::kUPlane, uv_stride);
ffmpeg_cdm_video_decoder.cc 290 const int uv_stride = av_frame_->width / 2; local
294 uv_stride,
296 uv_stride,
301 uv_stride,
303 uv_stride,
320 cdm_video_frame->SetStride(cdm::VideoFrame::kUPlane, uv_stride);
321 cdm_video_frame->SetStride(cdm::VideoFrame::kVPlane, uv_stride);
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 48 * uv_stride == y_stride/2, so enforce this here. */
49 int uv_stride = y_stride >> 1; local
50 int uvplane_size = (uv_height + border) * uv_stride;
77 ybf->uv_stride = uv_stride;
87 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2;
88 ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + border / 2;
134 const int uv_stride = y_stride >> ss_x; local
137 const int uvplane_size = (uv_height + 2 * uv_border_h) * uv_stride;
180 ybf->uv_stride = uv_stride
    [all...]
vpx_scale.c 507 Scale2D((unsigned char *) src->u_buffer, src->uv_stride, src->uv_width, src->uv_height,
508 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
513 vpx_memset(dst->u_buffer + i * dst->uv_stride + dw / 2 - 1, dst->u_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1);
517 vpx_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
519 Scale2D((unsigned char *) src->v_buffer, src->uv_stride, src->uv_width, src->uv_height,
520 (unsigned char *) dst->v_buffer, dst->uv_stride, dw / 2, dh / 2,
525 vpx_memset(dst->v_buffer + i * dst->uv_stride + dw / 2 - 1, dst->v_buffer[i * dst->uv_stride + dw / 2 - 2], dst->uv_width - dw / 2 + 1)
    [all...]
yv12extend.c 70 extend_plane(ybf->u_buffer, ybf->uv_stride,
76 extend_plane(ybf->v_buffer, ybf->uv_stride,
107 extend_plane(ybf->u_buffer, ybf->uv_stride,
110 extend_plane(ybf->v_buffer, ybf->uv_stride,
155 src += src_ybc->uv_stride;
156 dst += dst_ybc->uv_stride;
164 src += src_ybc->uv_stride;
165 dst += dst_ybc->uv_stride;
  /external/libvpx/libvpx/vp9/common/
vp9_extend.c 95 copy_and_extend_plane(src->u_buffer, src->uv_stride,
96 dst->u_buffer, dst->uv_stride,
100 copy_and_extend_plane(src->v_buffer, src->uv_stride,
101 dst->v_buffer, dst->uv_stride,
124 const int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1);
125 const int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1);
134 copy_and_extend_plane(src->u_buffer + src_uv_offset, src->uv_stride,
135 dst->u_buffer + dst_uv_offset, dst->uv_stride,
139 copy_and_extend_plane(src->v_buffer + src_uv_offset, src->uv_stride,
140 dst->v_buffer + dst_uv_offset, dst->uv_stride,
    [all...]
vp9_reconinter.h 65 int strides[4] = {src->y_stride, src->uv_stride, src->uv_stride,
84 int strides[4] = {src->y_stride, src->uv_stride, src->uv_stride,
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 120 vp8_build_intra_predictors_mbuv_s(xd, xd->dst.u_buffer - xd->dst.uv_stride,
121 xd->dst.v_buffer - xd->dst.uv_stride,
124 xd->dst.uv_stride,
126 xd->dst.uv_stride);
129 x->src.v_buffer, x->src.uv_stride, xd->dst.u_buffer,
130 xd->dst.v_buffer, xd->dst.uv_stride);
ssim.c 190 source->uv_stride, dest->uv_stride, source->uv_width,
194 source->uv_stride, dest->uv_stride, source->uv_width,
221 source->uv_stride, dest->uv_stride, source->uv_width,
225 source->uv_stride, dest->uv_stride, source->uv_width,
  /external/libvpx/libvpx/vp9/encoder/
vp9_ssim.c 112 source->uv_stride, dest->uv_stride,
116 source->uv_stride, dest->uv_stride,
136 source->uv_stride, dest->uv_stride,
140 source->uv_stride, dest->uv_stride,
  /external/libvpx/libvpx/vpx_scale/
vpx_scale_asm_offsets.c 25 DEFINE(yv12_buffer_config_uv_stride, offsetof(YV12_BUFFER_CONFIG, uv_stride));
yv12config.h 37 int uv_stride; member in struct:yv12_buffer_config
  /external/chromium_org/third_party/libwebp/enc/
picture.c 52 const int uv_stride = uv_width; local
81 uv_size = (uint64_t)uv_stride * uv_height;
99 picture->uv_stride = uv_stride;
153 picture->y_stride = picture->uv_stride = 0;
242 CopyPlane(src->u, src->uv_stride,
243 dst->u, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
244 CopyPlane(src->v, src->uv_stride,
245 dst->v, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
293 dst->u = src->u + (top >> 1) * src->uv_stride + (left >> 1)
    [all...]
iterator.c 63 it->uv_stride_ = enc->pic_->uv_stride;
111 const uint8_t* const usrc = pic->u + (y * pic->uv_stride + x) * 8;
112 const uint8_t* const vsrc = pic->v + (y * pic->uv_stride + x) * 8;
128 ImportBlock(usrc, pic->uv_stride, udst, uv_w, uv_h, 8);
129 ImportBlock(vsrc, pic->uv_stride, vdst, uv_w, uv_h, 8);
154 uint8_t* const udst = pic->u + (y * pic->uv_stride + x) * 8;
155 uint8_t* const vdst = pic->v + (y * pic->uv_stride + x) * 8;
168 ExportBlock(usrc, udst, pic->uv_stride, uv_w, uv_h);
169 ExportBlock(vsrc, vdst, pic->uv_stride, uv_w, uv_h);
  /external/webp/src/enc/
picture.c 52 const int uv_stride = uv_width; local
81 uv_size = (uint64_t)uv_stride * uv_height;
99 picture->uv_stride = uv_stride;
153 picture->y_stride = picture->uv_stride = 0;
242 CopyPlane(src->u, src->uv_stride,
243 dst->u, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
244 CopyPlane(src->v, src->uv_stride,
245 dst->v, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
293 dst->u = src->u + (top >> 1) * src->uv_stride + (left >> 1)
    [all...]
iterator.c 63 it->uv_stride_ = enc->pic_->uv_stride;
111 const uint8_t* const usrc = pic->u + (y * pic->uv_stride + x) * 8;
112 const uint8_t* const vsrc = pic->v + (y * pic->uv_stride + x) * 8;
128 ImportBlock(usrc, pic->uv_stride, udst, uv_w, uv_h, 8);
129 ImportBlock(vsrc, pic->uv_stride, vdst, uv_w, uv_h, 8);
154 uint8_t* const udst = pic->u + (y * pic->uv_stride + x) * 8;
155 uint8_t* const vdst = pic->v + (y * pic->uv_stride + x) * 8;
168 ExportBlock(usrc, udst, pic->uv_stride, uv_w, uv_h);
169 ExportBlock(vsrc, vdst, pic->uv_stride, uv_w, uv_h);
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 42 img->stride[VPX_PLANE_U] = yv12->uv_stride;
43 img->stride[VPX_PLANE_V] = yv12->uv_stride;
73 yv12->uv_stride = img->stride[VPX_PLANE_U];

Completed in 144 milliseconds

1 2 3 4