Home | History | Annotate | Download | only in enc

Lines Matching defs:pic

107   const WebPPicture* const pic = enc->pic_;
108 const uint8_t* const ysrc = pic->y + (y * pic->y_stride + x) * 16;
109 const uint8_t* const usrc = pic->u + (y * pic->uv_stride + x) * 8;
110 const uint8_t* const vsrc = pic->v + (y * pic->uv_stride + x) * 8;
114 int w = (pic->width - x * 16);
115 int h = (pic->height - y * 16);
121 ImportBlock(ysrc, pic->y_stride, ydst, w, h, 16);
126 ImportBlock(usrc, pic->uv_stride, udst, uv_w, uv_h, 8);
127 ImportBlock(vsrc, pic->uv_stride, vdst, uv_w, uv_h, 8);
150 const WebPPicture* const pic = enc->pic_;
151 uint8_t* const ydst = pic->y + (y * pic->y_stride + x) * 16;
152 uint8_t* const udst = pic->u + (y * pic->uv_stride + x) * 8;
153 uint8_t* const vdst = pic->v + (y * pic->uv_stride + x) * 8;
154 int w = (pic->width - x * 16);
155 int h = (pic->height - y * 16);
161 ExportBlock(ysrc, ydst, pic->y_stride, w, h);
166 ExportBlock(usrc, udst, pic->uv_stride, uv_w, uv_h);
167 ExportBlock(vsrc, vdst, pic->uv_stride, uv_w, uv_h);