Searched refs:yRows (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | YuvToJpegEncoder.cpp | 242 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 D | YuvToJpegEncoder.h | 73 void deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows,
|