Home
last modified time | relevance | path

Searched refs:uv1 (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp550 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
562 uv1 = (u01 >> 16) | ((v01 >> 16) << 20); in convertYUV420Planar16ToY410()
566 *dst_top++ = ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
567 *dst_top++ = ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
571 *dst_bot++ = ((y67 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
572 *dst_bot++ = ((y67 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()