Home
last modified time | relevance | path

Searched refs:y67 (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
532 y67 = *((uint32_t *)ySrcBot); in convertYUV420Planar16ToY410()
545 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
546 *dstBot++ = 3 << 30 | ((y67 >> 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
558 y67 = *((uint32_t*)ySrcBot); ySrcBot += 2; in convertYUV420Planar16ToY410()
570 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
571 *dstBot++ = 3 << 30 | ((y67 >> 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
658 y67 = *((uint32_t*)ptr_ybot); ptr_ybot += 2; in convertYUV420Planar16ToY410()
670 *dst_bot++ = ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
671 *dst_bot++ = ((y67 >> 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
684 y67 = *((uint32_t*)ySrcBot); ySrcBot += 2; in convertYUV420Planar16ToY410()
696 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
697 *dstBot++ = 3 << 30 | ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()