Searched refs:vRows (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/libs/hwui/jni/ |
D | YuvToJpegEncoder.cpp | 102 uint8_t* vRows = new uint8_t [8 * (width >> 1)]; in compress() local 108 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width, height); in compress() 120 cr[i/2] = vRows + offset; in compress() 126 delete [] vRows; in compress() 131 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument 140 vRows[index] = vu[0]; in deinterleave() 177 uint8_t* vRows = new uint8_t [16 * (width >> 1)]; in compress() local 183 deinterleave(yuvOffset, yRows, uRows, vRows, cinfo->next_scanline, width, height); in compress() 194 cr[i] = vRows + offset; in compress() 201 delete [] vRows; in compress() [all …]
|
D | YuvToJpegEncoder.h | 57 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/ |
D | NV12Compressor.cpp | 122 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()
|