Home
last modified time | relevance | path

Searched refs:rotatedWidth (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DSurfaceViewRendererOnMeasureTest.java139 final int rotatedWidth = 1280; in testFrame1280x720() local
141 final int unrotatedWidth = (rotationDegree % 180 == 0 ? rotatedWidth : rotatedHeight); in testFrame1280x720()
142 final int unrotatedHeight = (rotationDegree % 180 == 0 ? rotatedHeight : rotatedWidth); in testFrame1280x720()
145 assertEquals(rotatedWidth, frame.rotatedWidth()); in testFrame1280x720()
164 rotatedWidth, rotatedHeight, in testFrame1280x720()
165 MeasureSpec.makeMeasureSpec(rotatedWidth, measureSpecMode), in testFrame1280x720()
178 final float videoAspectRatio = (float) rotatedWidth / rotatedHeight; in testFrame1280x720()
DVideoCapturerAndroidTestFixtures.java53 width = frame.rotatedWidth(); in renderFrame()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
DMaxRectsPacker.java375 int rotatedWidth = height - settings.paddingY + settings.paddingX; in scoreRect() local
382 …newNode = findPositionForNewNodeBestShortSideFit(width, height, rotatedWidth, rotatedHeight, rotat… in scoreRect()
385 newNode = findPositionForNewNodeBottomLeft(width, height, rotatedWidth, rotatedHeight, rotate); in scoreRect()
388 … newNode = findPositionForNewNodeContactPoint(width, height, rotatedWidth, rotatedHeight, rotate); in scoreRect()
392 …newNode = findPositionForNewNodeBestLongSideFit(width, height, rotatedWidth, rotatedHeight, rotate… in scoreRect()
395 newNode = findPositionForNewNodeBestAreaFit(width, height, rotatedWidth, rotatedHeight, rotate); in scoreRect()
416 …private Rect findPositionForNewNodeBottomLeft (int width, int height, int rotatedWidth, int rotate… in findPositionForNewNodeBottomLeft() argument
435 …if (rotate && freeRectangles.get(i).width >= rotatedWidth && freeRectangles.get(i).height >= rotat… in findPositionForNewNodeBottomLeft()
440 bestNode.width = rotatedWidth; in findPositionForNewNodeBottomLeft()
451 …private Rect findPositionForNewNodeBestShortSideFit (int width, int height, int rotatedWidth, int … in findPositionForNewNodeBestShortSideFit() argument
[all …]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DVideoRenderer.java107 public int rotatedWidth() { in rotatedWidth() method in VideoRenderer.I420Frame
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
DPeerConnectionClientTest.java96 + frame.rotatedWidth() + " x " + frame.rotatedHeight()); in renderFrame()
98 Log.d(TAG, "Render frame: " + frame.rotatedWidth() + " x " + frame.rotatedHeight()); in renderFrame()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DVideoRendererGui.java256 textureCopy.setSize(pendingFrame.rotatedWidth(), pendingFrame.rotatedHeight()); in draw()
/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
DPeerConnectionTest.java142 setSize(frame.rotatedWidth(), frame.rotatedHeight()); in renderFrame()