Silently ignore error from RegisteModule
Review URL: https://webrtc-codereview.appspot.com/413001 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1781 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
26085e18e0
commit
14b0247f01
@ -306,11 +306,8 @@ WebRtc_Word32 ViEChannel::SetSendCodec(const VideoCodec& video_codec,
|
|||||||
"%s: RTP::RegisterSendTransport failure", __FUNCTION__);
|
"%s: RTP::RegisterSendTransport failure", __FUNCTION__);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (module_process_thread_.RegisterModule(rtp_rtcp) != 0) {
|
// Silently ignore error.
|
||||||
WEBRTC_TRACE(kTraceError, kTraceVideo, ViEId(engine_id_, channel_id_),
|
module_process_thread_.RegisterModule(rtp_rtcp);
|
||||||
"%s: RTP::RegisterModule failure", __FUNCTION__);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (rtp_rtcp->SetRTCPStatus(rtp_rtcp_.RTCP()) != 0) {
|
if (rtp_rtcp->SetRTCPStatus(rtp_rtcp_.RTCP()) != 0) {
|
||||||
WEBRTC_TRACE(kTraceWarning, kTraceVideo, ViEId(engine_id_, channel_id_),
|
WEBRTC_TRACE(kTraceWarning, kTraceVideo, ViEId(engine_id_, channel_id_),
|
||||||
"%s: RTP::SetRTCPStatus failure", __FUNCTION__);
|
"%s: RTP::SetRTCPStatus failure", __FUNCTION__);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user