Searched refs:uv0 (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 963 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 974 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 977 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 978 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 982 *dst_bot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 983 *dst_bot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 995 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 996 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 997 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 998 *dst_bot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() [all …]
|
/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 85 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 102 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 105 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 106 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 110 *dstBot++ = 3 << 30 | ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 111 *dstBot++ = 3 << 30 | ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 123 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 124 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() 125 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410() 126 *dstBot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410() [all …]
|