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

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

Completed in 248 milliseconds