Home
last modified time | relevance | path

Searched refs:videoHeight (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DVideoRendererGui.java151 private int videoHeight; field in VideoRendererGui.YuvImageRenderer
213 + " x " + videoHeight + ". Rotation: " + rotationDegree + ". Mirror: " + mirror); in updateLayoutMatrix()
215 ? (float) videoWidth / videoHeight in updateLayoutMatrix()
216 : (float) videoHeight / videoWidth; in updateLayoutMatrix()
345 private void setSize(final int videoWidth, final int videoHeight, final int rotation) { in setSize() argument
346 if (videoWidth == this.videoWidth && videoHeight == this.videoHeight in setSize()
352 ". Reporting frame resolution changed to " + videoWidth + " x " + videoHeight); in setSize()
353 rendererEvents.onFrameResolutionChanged(videoWidth, videoHeight, rotation); in setSize()
358 videoWidth + " x " + videoHeight + " rotation " + rotation); in setSize()
361 this.videoHeight = videoHeight; in setSize()
DRendererCommon.java50 public void onFrameResolutionChanged(int videoWidth, int videoHeight, int rotation); in onFrameResolutionChanged() argument
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java136 public final int videoHeight; field in PeerConnectionClient.PeerConnectionParameters
150 int videoWidth, int videoHeight, int videoFps, int videoStartBitrate, in PeerConnectionParameters() argument
158 this.videoHeight = videoHeight; in PeerConnectionParameters()
370 int videoHeight = peerConnectionParameters.videoHeight; in createMediaConstraintsInternal() local
374 if ((videoWidth == 0 || videoHeight == 0) in createMediaConstraintsInternal()
378 videoHeight = HD_VIDEO_HEIGHT; in createMediaConstraintsInternal()
382 if (videoWidth > 0 && videoHeight > 0) { in createMediaConstraintsInternal()
384 videoHeight = Math.min(videoHeight, MAX_VIDEO_HEIGHT); in createMediaConstraintsInternal()
390 MIN_VIDEO_HEIGHT_CONSTRAINT, Integer.toString(videoHeight))); in createMediaConstraintsInternal()
392 MAX_VIDEO_HEIGHT_CONSTRAINT, Integer.toString(videoHeight))); in createMediaConstraintsInternal()
DConnectActivity.java283 int videoHeight = 0; in connectToRoom() local
290 videoHeight = Integer.parseInt(dimensions[1]); in connectToRoom()
293 videoHeight = 0; in connectToRoom()
353 intent.putExtra(CallActivity.EXTRA_VIDEO_HEIGHT, videoHeight); in connectToRoom()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMediaRecorder.java43 private int videoHeight; field in ShadowMediaRecorder
145 videoHeight = height; in setVideoSize()
237 return videoHeight; in getVideoHeight()
DShadowMediaPlayer.java436 private int videoHeight; field in ShadowMediaPlayer
1077 return videoHeight;
/external/autotest/client/common_lib/cros/webrtc_scripts/
Dloopback-peerconnection.js85 this.remoteView.videoHeight, expectedResolution.h, allowedDelta)) {
99 resStr(this.remoteView.videoWidth, this.remoteView.videoHeight));
/external/autotest/client/site_tests/video_YouTubeMseEme/files/
Dvideo_YouTubeMseEme.js222 test_result &= temp_video.videoHeight === 0;