Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp642 uint32_t *dst_top = (uint32_t *) dst_ptr; in convertYUV420Planar16ToY410() local
663 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
664 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
665 *dst_top++ = ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
666 *dst_top++ = ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
682 *dst_top++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
683 *dst_top++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()