Searched refs:mUdata (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DYUVImage.h27 // - initializeYUVPointers() sets up pointers (mYdata, mUdata, mVdata) to
133 // YUV420 semiplanar, mUdata points to the start of the U data in the UV plane.
134 uint8_t *mUdata; member in class:android::YUVImage
140 // Initialize the pointers mYdata, mUdata, mVdata to point to the right locations for
146 // data from the corresponding base pointers -- mYdata, mUdata, mVdata.
/frameworks/av/media/libstagefright/yuv/
H A DYUVImage.cpp67 mUdata = mYdata + numberOfPixels;
68 mVdata = mUdata + (numberOfPixels >> 2);
75 mUdata = mVdata + 1;
137 return mUdata + offset;

Completed in 118 milliseconds