Home
last modified time | relevance | path

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

/external/skia/src/codec/
DSkJpegCodec.cpp665 JSAMPROW rowptrs[2 * DCTSIZE + DCTSIZE + DCTSIZE]; in onGetYUV8Planes() local
666 yuv[0] = &rowptrs[0]; // Y rows (DCTSIZE or 2 * DCTSIZE) in onGetYUV8Planes()
667 yuv[1] = &rowptrs[2 * DCTSIZE]; // U rows (DCTSIZE) in onGetYUV8Planes()
668 yuv[2] = &rowptrs[3 * DCTSIZE]; // V rows (DCTSIZE) in onGetYUV8Planes()
673 rowptrs[i] = SkTAddOffset<JSAMPLE>(pixels[0], i * sizeInfo.fYWidthBytes); in onGetYUV8Planes()
676 rowptrs[i + 2 * DCTSIZE] = SkTAddOffset<JSAMPLE>(pixels[1], i * sizeInfo.fUWidthBytes); in onGetYUV8Planes()
677 rowptrs[i + 3 * DCTSIZE] = SkTAddOffset<JSAMPLE>(pixels[2], i * sizeInfo.fVWidthBytes); in onGetYUV8Planes()
700 rowptrs[i] += blockIncrementY; in onGetYUV8Planes()
703 rowptrs[i + 2 * DCTSIZE] += blockIncrementU; in onGetYUV8Planes()
704 rowptrs[i + 3 * DCTSIZE] += blockIncrementV; in onGetYUV8Planes()
[all …]