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

/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp160 uint8_t* yRows = new uint8_t [16 * width]; local
168 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height);
173 y[i] = yRows + i * width;
184 delete [] yRows;
190 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, argument
199 yRows[indexY] = yuvSeg[0];
200 yRows[indexY + 1] = yuvSeg[2];

Completed in 36 milliseconds