Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp96 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
108 y45 = *((uint32_t *)ySrcBot); in convertYUV420Planar16ToY410()
121 *dstBot++ = 3 << 30 | ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
122 *dstBot++ = 3 << 30 | ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
133 y45 = *((uint32_t *)ySrcBot); in convertYUV420Planar16ToY410()
137 *dstBot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
138 *dstBot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp1551 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
1560 y45 = *((uint32_t*)ptr_ybot); ptr_ybot += 2; in convertYUV420Planar16ToY410()
1571 *dst_bot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
1572 *dst_bot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
1583 y45 = *((uint32_t*)ptr_ybot); in convertYUV420Planar16ToY410()
1587 *dst_bot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
1588 *dst_bot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()