Searched refs:uvp (Results 1 – 3 of 3) sorted by relevance
49 int uvp = frameSize + (j >> 1) * width, u = 0, v = 0; in decodeYUV420SPQuarterRes() local56 v = (0xff & yuv420sp[uvp++]) - 128; in decodeYUV420SPQuarterRes()57 u = (0xff & yuv420sp[uvp++]) - 128; in decodeYUV420SPQuarterRes()58 uvp += 2; // Skip the UV values for the 4 pixels skipped in between in decodeYUV420SPQuarterRes()
220 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24() local229 v = yuv420sp[uvp++]; in YUV420toYVU24()230 u = yuv420sp[uvp++]; in YUV420toYVU24()253 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24_NEW() local257 ImageType iuvp = yuv420sp + uvp; in YUV420toYVU24_NEW()