Bug 1110976 - Part 2: Don't configure multiple recv codecs if we are the answerer. r=jesup

This commit is contained in:
Byron Campen [:bwc] 2014-12-12 14:33:12 -08:00
Родитель 8e54c7f088
Коммит 544114ca0f
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1037,6 +1037,7 @@ JsepSessionImpl::NegotiateTrack(const SdpMediaSection& remoteMsection,
}
negotiatedDetails->mCodecs.push_back(negotiated);
break;
}
if (negotiatedDetails->mCodecs.empty()) {

Просмотреть файл

@ -1137,7 +1137,7 @@ WebrtcVideoConduit::ReceivedRTCPPacket(const void *data, int len)
if(mPtrViENetwork->ReceivedRTCPPacket(mChannel,data,len) == -1)
{
int error = mPtrViEBase->LastError();
CSFLogError(logTag, "%s RTP Processing Failed %d", __FUNCTION__, error);
CSFLogError(logTag, "%s RTCP Processing Failed %d", __FUNCTION__, error);
if(error >= kViERtpRtcpInvalidChannelId && error <= kViERtpRtcpRtcpDisabled)
{
return kMediaConduitRTPProcessingFailed;