When the peerconnection creates the offer with a constraint to disable the audio offering, stats will not get properly updated.

constraints . SetMandatoryReceiveAudio (false);

The problem is that webrtc::GetTrackIdBySsrc returns false if audio is not available. However it should continue and check for the video track.

BUG=webrtc:3755
R=jiayl@webrtc.org, juberti@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/22479004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7005 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
jiayl@webrtc.org 2014-08-28 22:21:34 +00:00
parent b0dc3d7204
commit e21cc9ae2a

View File

@ -224,9 +224,7 @@ static bool GetTrackIdBySsrc(const SessionDescription* session_description,
cricket::StreamParams stream_out; cricket::StreamParams stream_out;
const cricket::ContentInfo* audio_info = const cricket::ContentInfo* audio_info =
cricket::GetFirstAudioContent(session_description); cricket::GetFirstAudioContent(session_description);
if (!audio_info) { if (audio_info) {
return false;
}
const cricket::MediaContentDescription* audio_content = const cricket::MediaContentDescription* audio_content =
static_cast<const cricket::MediaContentDescription*>( static_cast<const cricket::MediaContentDescription*>(
audio_info->description); audio_info->description);
@ -235,12 +233,11 @@ static bool GetTrackIdBySsrc(const SessionDescription* session_description,
*track_id = stream_out.id; *track_id = stream_out.id;
return true; return true;
} }
}
const cricket::ContentInfo* video_info = const cricket::ContentInfo* video_info =
cricket::GetFirstVideoContent(session_description); cricket::GetFirstVideoContent(session_description);
if (!video_info) { if (video_info) {
return false;
}
const cricket::MediaContentDescription* video_content = const cricket::MediaContentDescription* video_content =
static_cast<const cricket::MediaContentDescription*>( static_cast<const cricket::MediaContentDescription*>(
video_info->description); video_info->description);
@ -249,6 +246,7 @@ static bool GetTrackIdBySsrc(const SessionDescription* session_description,
*track_id = stream_out.id; *track_id = stream_out.id;
return true; return true;
} }
}
return false; return false;
} }