Home | History | Annotate | Download | only in dec

Lines Matching refs:mb_w

31   const int mb_w = io->mb_w;
33 const int uv_w = (mb_w + 1) / 2;
37 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);
53 dst, buf->stride, io->mb_w, io->mb_h,
70 const int mb_w = io->mb_w;
74 convert(y_src, u_src, v_src, dst, mb_w);
100 const int mb_w = io->mb_w;
101 const int uv_w = (mb_w + 1) / 2;
105 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, mb_w);
109 dst - buf->stride, dst, mb_w);
122 dst - buf->stride, dst, mb_w);
128 memcpy(p->tmp_y, cur_y, mb_w * sizeof(*p->tmp_y));
138 dst + buf->stride, NULL, mb_w);
151 const int mb_w = io->mb_w;
158 memcpy(dst, alpha, mb_w * sizeof(*dst));
165 memset(dst, 0xff, mb_w * sizeof(*dst));
201 const int mb_w = io->mb_w;
214 for (i = 0; i < mb_w; ++i) {
225 mb_w, num_rows, buf->stride);
234 const int mb_w = io->mb_w;
249 for (i = 0; i < mb_w; ++i) {
259 WebPApplyAlphaMultiply4444(base_rgba, mb_w, num_rows, buf->stride);
291 io->a, io->width, io->mb_w, mb_h, 0);
320 const int uv_in_width = (io->mb_w + 1) >> 1;
336 WebPRescalerInit(&p->scaler_y, io->mb_w, io->mb_h,
338 io->mb_w, out_width, io->mb_h, out_height,
353 WebPRescalerInit(&p->scaler_a, io->mb_w, io->mb_h,
355 io->mb_w, out_width, io->mb_h, out_height,
495 const int uv_in_width = (io->mb_w + 1) >> 1;
515 WebPRescalerInit(&p->scaler_y, io->mb_w, io->mb_h,
517 io->mb_w, out_width, io->mb_h, out_height,
521 io->mb_w, 2 * out_width, io->mb_h, 2 * out_height,
525 io->mb_w, 2 * out_width, io->mb_h, 2 * out_height,
530 WebPRescalerInit(&p->scaler_a, io->mb_w, io->mb_h,
532 io->mb_w, out_width, io->mb_h, out_height,
575 const int uv_width = (io->mb_w + 1) >> 1;
576 p->memory = WebPSafeMalloc(1ULL, (size_t)(io->mb_w + 2 * uv_width));
581 p->tmp_u = p->tmp_y + io->mb_w;
614 const int mb_w = io->mb_w;
619 if (mb_w <= 0 || mb_h <= 0) {