From aae4fa86d058536b9bf3454349380919d14d64e1 Mon Sep 17 00:00:00 2001 From: hekra01 Date: Thu, 10 Nov 2016 06:23:27 -0800 Subject: [PATCH] Set videoCapturerStopped when PeerConnectionClient stopped BUG=webrtc:6682 Review-Url: https://codereview.webrtc.org/2489213002 Cr-Commit-Position: refs/heads/master@{#15020} --- .../androidapp/src/org/appspot/apprtc/PeerConnectionClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java index c152f945a8..a26c86d039 100644 --- a/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java +++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java @@ -540,6 +540,7 @@ public class PeerConnectionClient { } catch (InterruptedException e) { throw new RuntimeException(e); } + videoCapturerStopped = true; videoCapturer.dispose(); videoCapturer = null; }