Home
last modified time | relevance | path

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

/frameworks/base/core/jni/android/graphics/
DYuvToJpegEncoder.cpp87 uint8_t* vRows = new uint8_t [8 * (width >> 1)]; in compress() local
93 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width, height); in compress()
105 cr[i/2] = vRows + offset; in compress()
111 delete [] vRows; in compress()
116 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
125 vRows[index] = vu[0]; in deinterleave()
162 uint8_t* vRows = new uint8_t [16 * (width >> 1)]; in compress() local
168 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress()
179 cr[i] = vRows + offset; in compress()
186 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);