Home | History | Annotate | Download | only in graphics

Lines Matching refs:uRows

103     uint8_t* uRows = new uint8_t [8 * (width >> 1)];
110 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width, height);
121 cb[i/2] = uRows + offset;
127 delete [] uRows;
132 void Yuv420SpToJpegEncoder::deinterleave(uint8_t* vuPlanar, uint8_t* uRows,
141 uRows[index] = vu[1];
178 uint8_t* uRows = new uint8_t [16 * (width >> 1)];
185 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height);
195 cb[i] = uRows + offset;
202 delete [] uRows;
207 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows,
218 uRows[indexU] = yuvSeg[1];