Home
last modified time | relevance | path

Searched refs:rotatedHeight (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DSurfaceViewRendererOnMeasureTest.java170 final int rotatedHeight = 720; 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()
175 assertEquals(rotatedHeight, frame.getRotatedHeight()); in testFrame1280x720()
195 rotatedHeight, MeasureSpec.makeMeasureSpec(rotatedWidth, measureSpecMode), in testFrame1280x720()
196 MeasureSpec.makeMeasureSpec(rotatedHeight, measureSpecMode)); in testFrame1280x720()
207 final float videoAspectRatio = (float) rotatedWidth / rotatedHeight; in testFrame1280x720()
/external/webrtc/sdk/android/api/org/webrtc/
DSurfaceViewRenderer.java279 int rotatedHeight = rotation == 0 || rotation == 180 ? videoHeight : videoWidth; in onFrameResolutionChanged() local
283 rotatedFrameHeight = rotatedHeight; in onFrameResolutionChanged()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/video/
DMediaCodecVideoRenderer.java676 int rotatedHeight = currentWidth; in configureOutput() local
678 currentHeight = rotatedHeight; in configureOutput()