Home
last modified time | relevance | path

Searched refs:vRows (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/jni/android/graphics/
DYuvToJpegEncoder.cpp89 uint8_t* vRows = new uint8_t [8 * (width >> 1)]; in compress() local
95 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width, height); in compress()
107 cr[i/2] = vRows + offset; in compress()
113 delete [] vRows; in compress()
118 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
127 vRows[index] = vu[0]; in deinterleave()
164 uint8_t* vRows = new uint8_t [16 * (width >> 1)]; in compress() local
170 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress()
181 cr[i] = vRows + offset; in compress()
188 delete [] vRows; in compress()
[all …]
DYuvToJpegEncoder.h57 void deinterleave(uint8_t* vuPlanar, uint8_t* uRows, uint8_t* vRows,
71 uint8_t* vRows, int rowIndex, int width, int height);