Searched refs:y01 (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 649 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 655 y01 = *((uint32_t*)ptr_ytop); ptr_ytop += 2; in convertYUV420Planar16ToY410() 663 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 664 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 679 y01 = *((uint32_t*)ptr_ytop); in convertYUV420Planar16ToY410() 682 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 683 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 803 uint32_t y01 = *((uint32_t*)ptr_y); ptr_y += 2; in convertYUV420Planar16ToY410() local 805 *ptr_out++ = ((y01 & 0x3FF) << 10) | uv; in convertYUV420Planar16ToY410() 806 *ptr_out++ = ((y01 >> 16) << 10) | uv; in convertYUV420Planar16ToY410()
|
/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 518 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 526 y01 = *((uint32_t *)ySrcTop); in convertYUV420Planar16ToY410() 538 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 539 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 554 y01 = *((uint32_t *)ySrcTop); in convertYUV420Planar16ToY410() 557 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 558 *dstTop++ = ((y01 >> 16) << 10) | uv0; 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 557 y01 = *((uint32_t*)ySrcTop); ySrcTop += 2; in convertYUV420Planar16ToY410() 565 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 566 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 581 y01 = *((uint32_t*)ySrcTop); in convertYUV420Planar16ToY410() 584 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 585 *dstTop++ = ((y01 >> 16) << 10) | uv0; 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 682 y01 = *((uint32_t*)ySrcTop); ySrcTop += 2; in convertYUV420Planar16ToY410() 690 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 691 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 706 y01 = *((uint32_t*)ySrcTop); in convertYUV420Planar16ToY410() 709 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 710 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
|