Home
last modified time | relevance | path

Searched refs:videoWidth (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.java42 private int videoWidth; field in ShadowMediaRecorder
144 videoWidth = width; in setVideoSize()
233 return videoWidth; in getVideoWidth()
DShadowMediaPlayer.java437 private int videoWidth; field in ShadowMediaPlayer
1083 return videoWidth;
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java144 private int videoWidth; field in PeerConnectionClient
210 public final int videoWidth; field in PeerConnectionClient.PeerConnectionParameters
231 int videoWidth, int videoHeight, int videoFps, int videoMaxBitrate, String videoCodec, in PeerConnectionParameters() argument
240 this.videoWidth = videoWidth; in PeerConnectionParameters()
544 videoWidth = peerConnectionParameters.videoWidth; in createMediaConstraintsInternal()
549 if (videoWidth == 0 || videoHeight == 0) { in createMediaConstraintsInternal()
550 videoWidth = HD_VIDEO_WIDTH; 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.java438 int videoWidth = 0; in connectToRoom() local
441 videoWidth = getIntent().getIntExtra(CallActivity.EXTRA_VIDEO_WIDTH, 0); in connectToRoom()
444 if (videoWidth == 0 && videoHeight == 0) { in connectToRoom()
450 videoWidth = Integer.parseInt(dimensions[0]); in connectToRoom()
453 videoWidth = 0; in connectToRoom()
554 intent.putExtra(CallActivity.EXTRA_VIDEO_WIDTH, videoWidth); in connectToRoom()
DCallActivity.java295 int videoWidth = intent.getIntExtra(EXTRA_VIDEO_WIDTH, 0); in onCreate() local
300 if (screencaptureEnabled && videoWidth == 0 && videoHeight == 0) { in onCreate()
302 videoWidth = displayMetrics.widthPixels; in onCreate()
314 tracing, videoWidth, videoHeight, intent.getIntExtra(EXTRA_VIDEO_FPS, 0), in onCreate()
/external/autotest/client/common_lib/cros/webrtc_scripts/
Dloopback-peerconnection.js83 this.remoteView.videoWidth, expectedResolution.w, 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);