Home
last modified time | relevance | path

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

/external/webrtc/sdk/android/api/org/webrtc/
DSurfaceViewRenderer.java274 public void onFrameResolutionChanged(int videoWidth, int videoHeight, int rotation) { in onFrameResolutionChanged() argument
276 rendererEvents.onFrameResolutionChanged(videoWidth, videoHeight, rotation); in onFrameResolutionChanged()
278 int rotatedWidth = rotation == 0 || rotation == 180 ? videoWidth : videoHeight; in onFrameResolutionChanged()
279 int rotatedHeight = rotation == 0 || rotation == 180 ? videoHeight : videoWidth; in onFrameResolutionChanged()
DRendererCommon.java31 public void onFrameResolutionChanged(int videoWidth, int videoHeight, int rotation); in onFrameResolutionChanged() argument
/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/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java145 private int videoHeight; field in PeerConnectionClient
211 public final int videoHeight; field in PeerConnectionClient.PeerConnectionParameters
231 int videoWidth, int videoHeight, int videoFps, int videoMaxBitrate, String videoCodec, in PeerConnectionParameters() argument
241 this.videoHeight = videoHeight; in PeerConnectionParameters()
545 videoHeight = peerConnectionParameters.videoHeight; in createMediaConstraintsInternal()
549 if (videoWidth == 0 || videoHeight == 0) { in createMediaConstraintsInternal()
551 videoHeight = HD_VIDEO_HEIGHT; in createMediaConstraintsInternal()
558 Logging.d(TAG, "Capturing format: " + videoWidth + "x" + videoHeight + "@" + videoFps); in createMediaConstraintsInternal()
745 return isVideoCallEnabled() && videoWidth * videoHeight >= 1280 * 720; in isHDVideo()
886 videoCapturer.startCapture(videoWidth, videoHeight, videoFps); in startVideoSource()
[all …]
DConnectActivity.java439 int videoHeight = 0; in connectToRoom() local
442 videoHeight = getIntent().getIntExtra(CallActivity.EXTRA_VIDEO_HEIGHT, 0); in connectToRoom()
444 if (videoWidth == 0 && videoHeight == 0) { in connectToRoom()
451 videoHeight = Integer.parseInt(dimensions[1]); in connectToRoom()
454 videoHeight = 0; in connectToRoom()
555 intent.putExtra(CallActivity.EXTRA_VIDEO_HEIGHT, videoHeight); in connectToRoom()
DCallActivity.java296 int videoHeight = intent.getIntExtra(EXTRA_VIDEO_HEIGHT, 0); in onCreate() local
300 if (screencaptureEnabled && videoWidth == 0 && videoHeight == 0) { in onCreate()
303 videoHeight = displayMetrics.heightPixels; in onCreate()
314 tracing, videoWidth, videoHeight, intent.getIntExtra(EXTRA_VIDEO_FPS, 0), in onCreate()
/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/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/trackselection/
DDefaultTrackSelector.java2431 int viewportHeight, int videoWidth, int videoHeight) {
2432 if (orientationMayChange && (videoWidth > videoHeight) != (viewportWidth > viewportHeight)) {
2439 if (videoWidth * viewportHeight >= videoHeight * viewportWidth) {
2441 return new Point(viewportWidth, Util.ceilDivide(viewportWidth * videoHeight, videoWidth));
2444 return new Point(Util.ceilDivide(viewportHeight * videoWidth, videoHeight), viewportHeight);