Searched defs:yRows (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp162 uint8_t* yRows = new uint8_t [16 * width]; local
170 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height);
175 y[i] = yRows + i * width;
186 delete [] yRows;
192 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, argument
201 yRows[indexY] = yuvSeg[0];
202 yRows[indexY + 1] = yuvSeg[2];

Completed in 1219 milliseconds