8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ce809 commit dec1480Copy full SHA for dec1480
android/src/main/java/com/cloudwebrtc/webrtc/GetUserMediaImpl.java
@@ -451,8 +451,9 @@ public void onStop() {
451
WindowManager wm = (WindowManager) applicationContext
452
.getSystemService(Context.WINDOW_SERVICE);
453
454
- width = wm.getDefaultDisplay().getWidth();
455
- height = wm.getDefaultDisplay().getHeight();
+ int width = wm.getDefaultDisplay().getWidth();
+ int height = wm.getDefaultDisplay().getHeight();
456
+ int fps = DEFAULT_FPS;
457
458
videoCapturer.startCapture(width, height, fps);
459
0 commit comments