Lines Matching refs:yuv420sp
209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height) in YUV420toYVU24() argument
223 *oyp++ = yuv420sp[yp]; in YUV420toYVU24()
229 v = yuv420sp[uvp++]; in YUV420toYVU24()
230 u = yuv420sp[uvp++]; in YUV420toYVU24()
239 void YUV420toYVU24_NEW(ImageType yvu24, ImageType yuv420sp, int width, in YUV420toYVU24_NEW() argument
248 memcpy(yvu24, yuv420sp, frameSize * sizeof(unsigned char)); in YUV420toYVU24_NEW()
257 ImageType iuvp = yuv420sp + uvp; in YUV420toYVU24_NEW()
309 void decodeYUV444SP(unsigned char* rgb, unsigned char* yuv420sp, int width, in decodeYUV444SP() argument
321 int y = (0xff & ((int) yuv420sp[yp])) - 16; in decodeYUV444SP()
324 v = (0xff & yuv420sp[vp]) - 128; in decodeYUV444SP()
325 u = (0xff & yuv420sp[up]) - 128; in decodeYUV444SP()