Home | History | Annotate | Download | only in enc

Lines Matching refs:pic

109   const WebPPicture* const pic = enc->pic_;
110 const uint8_t* const ysrc = pic->y + (y * pic->y_stride + x) * 16;
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;
116 int w = (pic->width - x * 16);
117 int h = (pic->height - y * 16);
123 ImportBlock(ysrc, pic->y_stride, ydst, w, h, 16);
128 ImportBlock(usrc, pic->uv_stride, udst, uv_w, uv_h, 8);
129 ImportBlock(vsrc, pic->uv_stride, vdst, uv_w, uv_h, 8);
152 const WebPPicture* const pic = enc->pic_;
153 uint8_t* const ydst = pic->y + (y * pic->y_stride + x) * 16;
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;
156 int w = (pic->width - x * 16);
157 int h = (pic->height - y * 16);
163 ExportBlock(ysrc, ydst, pic->y_stride, w, h);
168 ExportBlock(usrc, udst, pic->uv_stride, uv_w, uv_h);
169 ExportBlock(vsrc, vdst, pic->uv_stride, uv_w, uv_h);