Home
last modified time | relevance | path

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

/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DSurfaceViewRendererOnMeasureTest.java169 final int rotatedWidth = 1280; in testFrame1280x720() local
171 final int unrotatedWidth = (rotationDegree % 180 == 0 ? rotatedWidth : rotatedHeight); in testFrame1280x720()
172 final int unrotatedHeight = (rotationDegree % 180 == 0 ? rotatedHeight : rotatedWidth); in testFrame1280x720()
174 assertEquals(rotatedWidth, frame.getRotatedWidth()); in testFrame1280x720()
194 assertMeasuredSize(surfaceViewRenderer, scalingType, frameDimensions, rotatedWidth, in testFrame1280x720()
195 rotatedHeight, MeasureSpec.makeMeasureSpec(rotatedWidth, measureSpecMode), in testFrame1280x720()
207 final float videoAspectRatio = (float) rotatedWidth / rotatedHeight; in testFrame1280x720()
/external/webrtc/sdk/android/api/org/webrtc/
DSurfaceViewRenderer.java278 int rotatedWidth = rotation == 0 || rotation == 180 ? videoWidth : videoHeight; in onFrameResolutionChanged() local
282 rotatedFrameWidth = rotatedWidth; in onFrameResolutionChanged()