Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp90 uint32_t *dstBot = (uint32_t *)(dst + dstStride); in convertYUV420Planar16ToY410() local
121 *dstBot++ = 3 << 30 | ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
122 *dstBot++ = 3 << 30 | ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
123 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
124 *dstBot++ = 3 << 30 | ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
137 *dstBot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
138 *dstBot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
270 uint32_t *dstBot = (uint32_t *)(dst + dstStride); in convertYUV420Planar16ToRGBA1010102() local
323 *dstBot++ = 3 << 30 | (b << 20) | (g << 10) | r; in convertYUV420Planar16ToRGBA1010102()
332 *dstBot++ = 3 << 30 | (b << 20) | (g << 10) | r; in convertYUV420Planar16ToRGBA1010102()