HomeSort by relevance Sort by last modified time
    Searched defs:is_uv (Results 1 - 12 of 12) sorted by null

  /external/libaom/libaom/av1/common/
alloccommon.c 145 const int is_uv = p > 0; local
146 const int ss_x = is_uv && cm->seq_params.subsampling_x;
thread_common.c 712 const int is_uv = plane > 0; local
713 const int ss_y = is_uv && cm->seq_params.subsampling_y;
reconinter.c 684 const int is_uv = i > 0; local
685 setup_pred_plane(&pd->dst, bsize, src->buffers[i], src->crop_widths[is_uv],
686 src->crop_heights[is_uv], src->strides[is_uv], mi_row,
700 const int is_uv = i > 0; local
702 src->crop_widths[is_uv], src->crop_heights[is_uv],
703 src->strides[is_uv], mi_row, mi_col, sf,
    [all...]
resize.c 1195 const int is_uv = i > 0; local
1213 const int is_uv = (plane > 0); local
1275 const int is_uv = (i > 0); local
    [all...]
av1_loopfilter.c 1485 const int is_uv = plane > 0; local
1564 const int is_uv = plane > 0; local
    [all...]
restoration.c 42 AV1PixelRect av1_whole_frame_rect(const AV1_COMMON *cm, int is_uv) {
45 int ss_x = is_uv && cm->seq_params.subsampling_x;
46 int ss_y = is_uv && cm->seq_params.subsampling_y;
67 int is_uv) {
73 const AV1PixelRect tile_rect = av1_whole_frame_rect(cm, is_uv);
1118 const int is_uv = plane > 0; local
1284 const int is_uv = plane > 0; local
1306 const int is_uv = plane > 0; local
1390 const int is_uv = plane > 0; local
1445 const int is_uv = plane > 0; local
1479 const int is_uv = plane > 0; local
    [all...]
  /external/libaom/libaom/aom_dsp/
ssim.c 170 const int is_uv = i > 0; local
172 source->strides[is_uv], dest->strides[is_uv],
173 source->crop_widths[is_uv], source->crop_heights[is_uv]);
430 const int is_uv = i > 0; local
432 source->strides[is_uv], dest->strides[is_uv],
433 source->crop_widths[is_uv],
434 source->crop_heights[is_uv], in_bd, shift)
    [all...]
  /external/libaom/libaom/aom_scale/generic/
aom_scale.c 484 const int is_uv = plane > 0; local
485 const int plane_dw = dw >> is_uv;
486 const int plane_dh = dh >> is_uv;
488 Scale2D((unsigned char *)src->buffers[plane], src->strides[is_uv],
489 src->widths[is_uv], src->heights[is_uv],
490 (unsigned char *)dst->buffers[plane], dst->strides[is_uv], plane_dw,
494 if (plane_dw < dst->widths[is_uv])
496 memset(dst->buffers[plane] + i * dst->strides[is_uv] + plane_dw - 1,
497 dst->buffers[plane][i * dst->strides[is_uv] + plane_dw - 2]
    [all...]
yv12extend.c 113 const int is_uv = plane > 0; local
114 const int plane_border = ybf->border >> is_uv;
116 ybf->buffers[plane], ybf->strides[is_uv], ybf->crop_widths[is_uv],
117 ybf->crop_heights[is_uv], plane_border, plane_border,
118 plane_border + ybf->heights[is_uv] - ybf->crop_heights[is_uv],
119 plane_border + ybf->widths[is_uv] - ybf->crop_widths[is_uv]);
124 const int is_uv = plane > 0 local
146 const int is_uv = plane > 0; local
158 const int is_uv = plane > 0; local
227 const int is_uv = plane > 0; local
241 const int is_uv = plane > 0; local
    [all...]
  /external/libaom/libaom/av1/encoder/
pickrst.c 144 const int is_uv = plane != AOM_PLANE_Y; local
145 rsc->plane_width = src->crop_widths[is_uv];
146 rsc->plane_height = src->crop_heights[is_uv];
148 rsc->src_stride = src->strides[is_uv];
150 rsc->dgd_stride = dgd->strides[is_uv];
151 rsc->tile_rect = av1_whole_frame_rect(cm, is_uv);
152 assert(src->crop_widths[is_uv] == dgd->crop_widths[is_uv]);
153 assert(src->crop_heights[is_uv] == dgd->crop_heights[is_uv]);
162 const int is_uv = plane > 0; local
631 const int is_uv = rsc->plane > 0; local
    [all...]
encodeframe.c 461 const int is_uv = i > 0; local
463 &x->plane[i].src, bsize, src->buffers[i], src->crop_widths[is_uv],
464 src->crop_heights[is_uv], src->strides[is_uv], mi_row, mi_col, NULL,
    [all...]
  /external/libaom/libaom/av1/decoder/
decodeframe.c 97 const int is_uv = plane > 0; local
101 if (buf->crop_heights[is_uv] > 0) {
102 aom_memset16(base, val, buf->crop_widths[is_uv]);
103 for (int row_idx = 1; row_idx < buf->crop_heights[is_uv]; row_idx++) {
104 memcpy(&base[row_idx * buf->strides[is_uv]], base,
105 sizeof(*base) * buf->crop_widths[is_uv]);
111 const int is_uv = plane > 0; local
112 for (int row_idx = 0; row_idx < buf->crop_heights[is_uv]; row_idx++) {
114 buf->crop_widths[is_uv]);
    [all...]

Completed in 2002 milliseconds