HomeSort by relevance Sort by last modified time
    Searched refs:srcLine (Results 1 - 2 of 2) sorted by null

  /frameworks/base/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 288 const uint8_t *srcLine = (const uint8_t *)img->planes[PLANE_Y];
291 memcpy(dst, srcLine, img->d_w);
293 srcLine += img->stride[PLANE_Y];
297 srcLine = (const uint8_t *)img->planes[PLANE_U];
299 memcpy(dst, srcLine, img->d_w / 2);
301 srcLine += img->stride[PLANE_U];
305 srcLine = (const uint8_t *)img->planes[PLANE_V];
307 memcpy(dst, srcLine, img->d_w / 2);
309 srcLine += img->stride[PLANE_V];