Home
last modified time | relevance | path

Searched refs:y67 (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
110 y67 = *((uint32_t *)ySrcBot); in convertYUV420Planar16ToY410()
123 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
124 *dstBot++ = 3 << 30 | ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp1551 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
1561 y67 = *((uint32_t*)ptr_ybot); ptr_ybot += 2; in convertYUV420Planar16ToY410()
1573 *dst_bot++ = ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
1574 *dst_bot++ = ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()