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.cpp550 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
560 y67 = *((uint32_t*)ySrcBot); ySrcBot += 2; in convertYUV420Planar16ToY410()
572 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
573 *dstBot++ = 3 << 30 | ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
/frameworks/av/media/codec2/components/vpx/
DC2SoftVpxDec.cpp675 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
685 y67 = *((uint32_t*)ySrcBot); ySrcBot += 2; in convertYUV420Planar16ToY410()
697 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
698 *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()