From 4dd7a653b5011495f4c805461bad33405c1fb1b8 Mon Sep 17 00:00:00 2001 From: phoglund Date: Wed, 18 Nov 2015 09:54:55 -0800 Subject: [PATCH] Temporarily disable VERIFY while bug is investigated. This breaks some client apps in annoying ways, so disable for now. BUG=webrtc:4776 Review URL: https://codereview.webrtc.org/1461513003 Cr-Commit-Position: refs/heads/master@{#10693} --- talk/app/webrtc/videosource.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/talk/app/webrtc/videosource.cc b/talk/app/webrtc/videosource.cc index 4e27b438a1..5cef7be6a2 100644 --- a/talk/app/webrtc/videosource.cc +++ b/talk/app/webrtc/videosource.cc @@ -462,7 +462,9 @@ void VideoSource::OnStateChange(cricket::VideoCapturer* capturer, } void VideoSource::SetState(SourceState new_state) { - if (VERIFY(state_ != new_state)) { + // TODO(hbos): Temporarily disabled VERIFY due to webrtc:4776. + // if (VERIFY(state_ != new_state)) { + if (state_ != new_state) { state_ = new_state; FireOnChanged(); }