Searched refs:uv0 (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 96 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 113 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 116 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 117 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 121 *dstBot++ = 3 << 30 | ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 122 *dstBot++ = 3 << 30 | ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 134 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 135 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 136 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 137 *dstBot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() [all …]
|
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 1551 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 1563 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 1566 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 1567 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 1571 *dst_bot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 1572 *dst_bot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 1584 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 1585 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 1586 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 1587 *dst_bot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() [all …]
|