Home
last modified time | relevance | path

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

/packages/apps/LegacyCamera/jni/
Dfeature_mos_jni.cpp209 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()
[all …]
/packages/apps/Camera2/src/com/android/camera/
DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { in decodeYUV420SPQuarterRes() argument
51 int y = (0xff & (yuv420sp[j * width + i])) - 16; in decodeYUV420SPQuarterRes()
56 v = (0xff & yuv420sp[uvp++]) - 128; in decodeYUV420SPQuarterRes()
57 u = (0xff & yuv420sp[uvp++]) - 128; in decodeYUV420SPQuarterRes()
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { in decodeYUV420SPQuarterRes() argument
51 int y = (0xff & ((int) yuv420sp[j * width + i])) - 16; in decodeYUV420SPQuarterRes()
56 v = (0xff & yuv420sp[uvp++]) - 128; in decodeYUV420SPQuarterRes()
57 u = (0xff & yuv420sp[uvp++]) - 128; in decodeYUV420SPQuarterRes()