Searched refs:y23 (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 518 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 528 y23 = *((uint32_t *)ySrcTop); in convertYUV420Planar16ToY410() 540 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 541 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomDec.cpp | 548 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 556 y23 = *((uint32_t*)ySrcTop); ySrcTop += 2; in convertYUV420Planar16ToY410() 565 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 566 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 649 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 656 y23 = *((uint32_t*)ptr_ytop); ptr_ytop += 2; in convertYUV420Planar16ToY410() 665 *dst_top++ = ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 666 *dst_top++ = ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxDec.cpp | 674 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 682 y23 = *((uint32_t*)ySrcTop); ySrcTop += 2; in convertYUV420Planar16ToY410() 691 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 692 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|