Home
last modified time | relevance | path

Searched refs:yRows (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/jni/
DYuvToJpegEncoder.cpp240 uint8_t* yRows = new uint8_t [16 * width]; in compress() local
248 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress()
253 y[i] = yRows + i * width; in compress()
264 delete [] yRows; in compress()
270 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, in deinterleave() argument
279 yRows[indexY] = yuvSeg[0]; in deinterleave()
280 yRows[indexY + 1] = yuvSeg[2]; in deinterleave()
DYuvToJpegEncoder.h74 void deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows,