Searched refs:yRows (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/android/graphics/ |
D | YuvToJpegEncoder.cpp | 177 uint8_t* yRows = new uint8_t [16 * width]; in compress() local 185 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress() 190 y[i] = yRows + i * width; in compress() 201 delete [] yRows; in compress() 207 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, in deinterleave() argument 216 yRows[indexY] = yuvSeg[0]; in deinterleave() 217 yRows[indexY + 1] = yuvSeg[2]; in deinterleave()
|
D | YuvToJpegEncoder.h | 70 void deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows,
|