Home | History | Annotate | Download | only in enc

Lines Matching full:uv_stride

52       const int uv_stride = uv_width;
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);
294 dst->v = src->v + (top >> 1) * src->uv_stride + (left >> 1);
296 dst->uv_stride = src->uv_stride;
334 const int uv_offset = (top / 2) * pic->uv_stride + left / 2;
337 CopyPlane(pic->u + uv_offset, pic->uv_stride,
338 tmp.u, tmp.uv_stride, HALVE(width), HALVE(height));
339 CopyPlane(pic->v + uv_offset, pic->uv_stride,
340 tmp.v, tmp.uv_stride, HALVE(width), HALVE(height));
432 HALVE(prev_width), HALVE(prev_height), pic->uv_stride,
434 HALVE(width), HALVE(height), tmp.uv_stride, work, 1);
436 HALVE(prev_width), HALVE(prev_height), pic->uv_stride,
438 HALVE(width), HALVE(height), tmp.uv_stride, work, 1);
563 const int dst = (x) + (y) * picture->uv_stride; \
586 memset(picture->u + y * picture->uv_stride, 128, uv_width);
587 memset(picture->v + y * picture->uv_stride, 128, uv_width);
796 cur_u += picture->uv_stride;
797 cur_v += picture->uv_stride;
893 const int off_uv = (y * pic->uv_stride + x) * SIZE2;
902 flatten(pic->u + off_uv, values[1], pic->uv_stride, SIZE2);
903 flatten(pic->v + off_uv, values[2], pic->uv_stride, SIZE2);
995 sse[1] = AccumulateLSIM(src->u, src->uv_stride,
996 ref->u, ref->uv_stride
997 sse[2] = AccumulateLSIM(src->v, src->uv_stride,
998 ref->v, ref->uv_stride, uv_w, uv_h);
1021 VP8SSIMAccumulatePlane(src->u, src->uv_stride,
1022 ref->u, ref->uv_stride,
1024 VP8SSIMAccumulatePlane(src->v, src->uv_stride,
1025 ref->v, ref->uv_stride,