Home
last modified time | relevance | path

Searched refs:y01 (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
104 y01 = *((uint32_t *)ySrcTop); in convertYUV420Planar16ToY410()
116 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
117 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
132 y01 = *((uint32_t *)ySrcTop); in convertYUV420Planar16ToY410()
135 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
136 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
277 int32_t u, v, y00, y01, y10, y11; in convertYUV420Planar16ToRGBA1010102() local
285 y01 = *ySrcTop - _c16; in convertYUV420Planar16ToRGBA1010102()
307 yMult = y01 * _y + 512; in convertYUV420Planar16ToRGBA1010102()
/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp1551 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
1558 y01 = *((uint32_t*)ptr_ytop); ptr_ytop += 2; in convertYUV420Planar16ToY410()
1566 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
1567 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
1582 y01 = *((uint32_t*)ptr_ytop); in convertYUV420Planar16ToY410()
1585 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
1586 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
1706 uint32_t y01 = *((uint32_t*)ptr_y); ptr_y += 2; in convertYUV420Planar16ToY410() local
1708 *ptr_out++ = ((y01 & 0x3FF) << 10) | uv; in convertYUV420Planar16ToY410()
1709 *ptr_out++ = ((y01 >> 16) << 10) | uv; in convertYUV420Planar16ToY410()