Searched refs:v01 (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 967 v01 = *((uint32_t*)ptr_v); ptr_v += 2; in convertYUV420Planar16ToY410() 974 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 975 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 992 v01 = *ptr_v; in convertYUV420Planar16ToY410() 995 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); 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 90 v01 = *((uint32_t *)vSrc); in convertYUV420Planar16ToY410() 102 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410() 103 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410() 120 v01 = *vSrc; in convertYUV420Planar16ToY410() 123 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
|