Searched refs:uv1 (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 536 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 540 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 541 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; 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/ |
D | C2SoftAomDec.cpp | 550 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 563 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 567 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 568 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; 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/ |
D | C2SoftVpxDec.cpp | 675 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 688 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 692 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 693 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; 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/ |
D | ColorConverter.cpp | 649 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 661 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 665 *dst_top++ = ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 666 *dst_top++ = ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410() 670 *dst_bot++ = ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 671 *dst_bot++ = ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|