Searched defs:yuvStrides (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DVideoRenderer.java45 public final int[] yuvStrides; field in class:VideoRenderer.I420Frame
57 int width, int height, int[] yuvStrides, ByteBuffer[] yuvPlanes) {
60 this.yuvStrides = yuvStrides;
63 yuvPlanes[0] = ByteBuffer.allocateDirect(yuvStrides[0] * height);
64 yuvPlanes[1] = ByteBuffer.allocateDirect(yuvStrides[1] * height);
65 yuvPlanes[2] = ByteBuffer.allocateDirect(yuvStrides[2] * height);
78 this.yuvStrides = null;
92 if (!Arrays.equals(yuvStrides, source.yuvStrides) ||
56 I420Frame( int width, int height, int[] yuvStrides, ByteBuffer[] yuvPlanes) argument
[all...]

Completed in 73 milliseconds