Remove RTC_NOTREACHED from audio_send_stream when ANA didn't work

Bug: None
Change-Id: Id3181827470aba8e486073380911db5873c7dd0a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/169800
Commit-Queue: Alejandro Luebs <aluebs@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Minyue Li <minyue@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#30730}
This commit is contained in:
Alejandro Luebs 2020-03-05 12:05:50 -08:00 committed by Commit Bot
parent 21bccae341
commit c77108446e

View File

@ -621,7 +621,8 @@ bool AudioSendStream::SetupSendCodec(const Config& new_config) {
RTC_DLOG(LS_INFO) << "Audio network adaptor enabled on SSRC "
<< new_config.rtp.ssrc;
} else {
RTC_NOTREACHED();
RTC_DLOG(LS_INFO) << "Failed to enable Audio network adaptor on SSRC "
<< new_config.rtp.ssrc;
}
}
@ -716,7 +717,8 @@ void AudioSendStream::ReconfigureANA(const Config& new_config) {
RTC_DLOG(LS_INFO) << "Audio network adaptor enabled on SSRC "
<< new_config.rtp.ssrc;
} else {
RTC_NOTREACHED();
RTC_DLOG(LS_INFO) << "Failed to enable Audio network adaptor on SSRC "
<< new_config.rtp.ssrc;
}
});
} else {