Home
last modified time | relevance | path

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

/external/libjpeg-turbo/
Dtjunittest.c304 int ypitch=PAD(pw, pad), uvpitch=PAD(cw, pad); in checkBufYUV() local
313 unsigned char y=buf[ypitch*row+col]; in checkBufYUV()
331 unsigned char u=buf[ypitch*ph + (uvpitch*row+col)], in checkBufYUV()
332 v=buf[ypitch*ph + uvpitch*ch + (uvpitch*row+col)]; in checkBufYUV()
358 printf("%.3d ", buf[ypitch*row+col]); in checkBufYUV()
365 printf("%.3d ", buf[ypitch*ph + (uvpitch*row+col)]); in checkBufYUV()
372 printf("%.3d ", buf[ypitch*ph + uvpitch*ch + (uvpitch*row+col)]); in checkBufYUV()
/external/libjpeg-turbo/java/
DTJUnitTest.java542 int ypitch = PAD(pw, pad), uvpitch = PAD(cw, pad); in checkBufYUV() local
544 int correctsize = ypitch * ph + in checkBufYUV()
556 byte y = buf[ypitch * row + col]; in checkBufYUV()
574 byte u = buf[ypitch * ph + (uvpitch * row + col)], in checkBufYUV()
575 v = buf[ypitch * ph + uvpitch * ch + (uvpitch * row + col)]; in checkBufYUV()
599 int y = buf[ypitch * row + col]; in checkBufYUV()
608 int u = buf[ypitch * ph + (uvpitch * row + col)]; in checkBufYUV()
617 int v = buf[ypitch * ph + uvpitch * ch + (uvpitch * row + col)]; in checkBufYUV()
/external/webrtc/talk/media/base/
Dvideoframe_unittest.h472 uint32_t ypitch, in IsEqual() argument
483 IsPlaneEqual("y", frame.GetYPlane(), frame.GetYPitch(), y, ypitch, in IsEqual()