Home
last modified time | relevance | path

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

/frameworks/base/core/jni/android/graphics/
DYuvToJpegEncoder.cpp104 uint8_t* vRows = new uint8_t [8 * (width >> 1)]; in compress() local
110 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width, height); in compress()
122 cr[i/2] = vRows + offset; in compress()
128 delete [] vRows; in compress()
133 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
142 vRows[index] = vu[0]; in deinterleave()
179 uint8_t* vRows = new uint8_t [16 * (width >> 1)]; in compress() local
185 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress()
196 cr[i] = vRows + offset; in compress()
203 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);
/frameworks/av/services/camera/libcameraservice/tests/
DNV12Compressor.cpp122 std::vector<uint8_t>& vRows, int rowIndex, int width, int height, int stride) { in deinterleave() argument
131 vRows[index] = vu[0]; in deinterleave()
149 std::vector<uint8_t> vRows(8 * (width >> 1)); in compressData() local
168 deinterleave(vuPlanar, uRows, vRows, mCompressInfo.next_scanline, in compressData()
181 cr[i/2] = &vRows[offset]; in compressData()