Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/hwui/jni/
H A DYuvToJpegEncoder.cpp242 uint8_t* yRows = new uint8_t [16 * width]; in compress() local
250 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress()
255 y[i] = yRows + i * width; in compress()
266 delete [] yRows; in compress()
272 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, in deinterleave() argument
281 yRows[indexY] = yuvSeg[0]; in deinterleave()
282 yRows[indexY + 1] = yuvSeg[2]; in deinterleave()
H A DYuvToJpegEncoder.h73 void deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows,