Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp79 uint32_t *dstBot = (uint32_t *)(dst + dstStride); in convertYUV420Planar16ToY410() local
110 *dstBot++ = 3 << 30 | ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
111 *dstBot++ = 3 << 30 | ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
112 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
113 *dstBot++ = 3 << 30 | ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
126 *dstBot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
127 *dstBot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
259 uint32_t *dstBot = (uint32_t *)(dst + dstStride); in convertYUV420Planar16ToRGBA1010102() local
312 *dstBot++ = 3 << 30 | (b << 20) | (g << 10) | r; in convertYUV420Planar16ToRGBA1010102()
321 *dstBot++ = 3 << 30 | (b << 20) | (g << 10) | r; in convertYUV420Planar16ToRGBA1010102()