Home
last modified time | relevance | path

Searched refs:y23 (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/codec2/components/gav1/
DC2SoftGav1Dec.cpp518 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/
DC2SoftAomDec.cpp548 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/
DColorConverter.cpp649 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/
DC2SoftVpxDec.cpp674 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()