Home
last modified time | relevance | path

Searched refs:yuvStrides (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DVideoRenderer.java46 public final int[] yuvStrides; field in VideoRenderer.I420Frame
65 I420Frame(int width, int height, int rotationDegree, int[] yuvStrides, ByteBuffer[] yuvPlanes, in I420Frame() argument
69 this.yuvStrides = yuvStrides; in I420Frame()
95 this.yuvStrides = null; in I420Frame()
117 return width + "x" + height + ":" + yuvStrides[0] + ":" + yuvStrides[1] + in toString()
118 ":" + yuvStrides[2]; in toString()
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DYUVImage.java255 yuvStrides = strides; in setBuf()
350 if (yuvStrides == null) in getStrides()
352 return yuvStrides; in getStrides()
435 protected int[] yuvStrides = null; field in YUVImage
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DVideoRendererGui.java251 pendingFrame.yuvStrides, pendingFrame.yuvPlanes); in draw()
386 if (frame.yuvStrides[0] < frame.width || in renderFrame()
387 frame.yuvStrides[1] < frame.width / 2 || in renderFrame()
388 frame.yuvStrides[2] < frame.width / 2) { in renderFrame()
389 Logging.e(TAG, "Incorrect strides " + frame.yuvStrides[0] + ", " + in renderFrame()
390 frame.yuvStrides[1] + ", " + frame.yuvStrides[2]); in renderFrame()
DSurfaceViewRenderer.java508 yuvTextures, frame.width, frame.height, frame.yuvStrides, frame.yuvPlanes); in renderFrameOnRenderThread()
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DSurfaceViewRendererOnMeasureTest.java58 final int[] yuvStrides = new int[] {width, (width + 1) / 2, (width + 1) / 2}; in createFrame() local
62 yuvPlanes[i] = ByteBuffer.allocateDirect(yuvStrides[i] * yuvHeights[i]); in createFrame()
64 return new VideoRenderer.I420Frame(width, height, rotationDegree, yuvStrides, yuvPlanes, 0); in createFrame()