Searched refs:u01 (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 521 u01 = *((uint32_t *)uSrc); in convertYUV420Planar16ToY410() 535 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 536 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 552 u01 = *uSrc; in convertYUV420Planar16ToY410() 556 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); 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 554 u01 = *((uint32_t*)uSrc); uSrc += 2; in convertYUV420Planar16ToY410() 562 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 563 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 579 u01 = *uSrc; in convertYUV420Planar16ToY410() 583 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); 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 679 u01 = *((uint32_t*)uSrc); uSrc += 2; in convertYUV420Planar16ToY410() 687 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 688 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 704 u01 = *uSrc; in convertYUV420Planar16ToY410() 708 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
|
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 649 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 652 u01 = *((uint32_t*)ptr_u); ptr_u += 2; in convertYUV420Planar16ToY410() 660 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 661 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 677 u01 = *ptr_u; in convertYUV420Planar16ToY410() 681 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
|