Searched refs:videoHeight (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
D | VideoRendererGui.java | 151 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()
|
D | RendererCommon.java | 50 public void onFrameResolutionChanged(int videoWidth, int videoHeight, int rotation); in onFrameResolutionChanged() argument
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | PeerConnectionClient.java | 136 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()
|
D | ConnectActivity.java | 283 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/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowMediaRecorder.java | 41 private int videoHeight; field in ShadowMediaRecorder 142 videoHeight = height; in setVideoSize() 234 return videoHeight; in getVideoHeight()
|
/external/autotest/client/site_tests/video_YouTubeMseEme/files/ |
D | video_YouTubeMseEme.js | 223 test_result &= temp_video.videoHeight === 0;
|
/external/opencv3/modules/videoio/src/ |
D | cap_msmf.cpp | 4082 UINT32 videoHeight; member in CvVideoWriter_MSMF 4169 videoHeight = frameSize.height; in open() 4171 bitRate = (UINT32)fps*videoWidth*videoHeight; // 1-bit per pixel in open() 4281 hr = MFSetAttributeSize(mediaTypeOut.Get(), MF_MT_FRAME_SIZE, videoWidth, videoHeight); in InitializeSinkWriter() 4316 hr = MFSetAttributeSize(mediaTypeIn.Get(), MF_MT_FRAME_SIZE, videoWidth, videoHeight); in InitializeSinkWriter() 4347 const DWORD cbBuffer = cbWidth * videoHeight; in WriteFrame() 4369 videoHeight // Image height in pixels. in WriteFrame() 4378 videoHeight // Image height in pixels. in WriteFrame()
|