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