Searched refs:yuvPlanes (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DVideoRenderer.java46 public final ByteBuffer[] yuvPlanes; field in class:VideoRenderer.I420Frame
50 * data. If |yuvPlanes| is null, new planes of the appropriate sizes are
54 int width, int height, int[] yuvStrides, ByteBuffer[] yuvPlanes) {
58 if (yuvPlanes == null) {
59 yuvPlanes = new ByteBuffer[3];
60 yuvPlanes[0] = ByteBuffer.allocateDirect(yuvStrides[0] * height);
61 yuvPlanes[1] = ByteBuffer.allocateDirect(yuvStrides[1] * height);
62 yuvPlanes[2] = ByteBuffer.allocateDirect(yuvStrides[2] * height);
64 this.yuvPlanes = yuvPlanes;
53 I420Frame( int width, int height, int[] yuvStrides, ByteBuffer[] yuvPlanes) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
H A DVideoStreamsView.java224 ByteBuffer plane = frame.yuvPlanes[i];

Completed in 153 milliseconds