Searched refs:uv1 (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 975 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 979 *dst_top++ = ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 980 *dst_top++ = ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410() 984 *dst_bot++ = ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 985 *dst_bot++ = ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|
/frameworks/av/media/codec2/components/base/ |
D | SimpleC2Component.cpp | 85 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local 103 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 107 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 108 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410() 112 *dstBot++ = 3 << 30 | ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410() 113 *dstBot++ = 3 << 30 | ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
|