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}
This commit is contained in:
parent
223692aa85
commit
4dd7a653b5
@ -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();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user