Home
last modified time | relevance | path

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

/packages/apps/Camera2/src/com/android/camera/
DPanoUtil.java49 int uvp = frameSize + (j >> 1) * width, u = 0, v = 0; in decodeYUV420SPQuarterRes() local
56 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()
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
DPanoUtil.java49 int uvp = frameSize + (j >> 1) * width, u = 0, v = 0; in decodeYUV420SPQuarterRes() local
56 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()
/packages/apps/LegacyCamera/jni/
Dfeature_mos_jni.cpp220 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24() local
229 v = yuv420sp[uvp++]; in YUV420toYVU24()
230 u = yuv420sp[uvp++]; in YUV420toYVU24()
253 int uvp = frameSize + (j >> 1) * width; in YUV420toYVU24_NEW() local
257 ImageType iuvp = yuv420sp + uvp; in YUV420toYVU24_NEW()