Searched refs:u01 (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 99 u01 = *((uint32_t *)uSrc); in convertYUV420Planar16ToY410() 113 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 114 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 130 u01 = *uSrc; in convertYUV420Planar16ToY410() 134 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
|
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 1551 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 1555 u01 = *((uint32_t*)ptr_u); ptr_u += 2; in convertYUV420Planar16ToY410() 1563 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 1564 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 1580 u01 = *ptr_u; in convertYUV420Planar16ToY410() 1584 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
|