Home
last modified time | relevance | path

Searched refs:video_content (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dmediastreamsignaling.cc489 const cricket::ContentInfo* video_content = GetFirstVideoContent(remote_desc); in OnRemoteDescriptionChanged() local
490 if (video_content) { in OnRemoteDescriptionChanged()
493 video_content->description); in OnRemoteDescriptionChanged()
543 const cricket::ContentInfo* video_content = in OnLocalDescriptionChanged() local
545 if (video_content) { in OnLocalDescriptionChanged()
546 if (video_content->rejected) { in OnLocalDescriptionChanged()
551 video_content->description); in OnLocalDescriptionChanged()
Dwebrtcsession_unittest.cc452 const cricket::VideoContentDescription* video_content = in VerifyCryptoParams() local
455 ASSERT_TRUE(video_content != NULL); in VerifyCryptoParams()
456 ASSERT_EQ(1U, video_content->cryptos().size()); in VerifyCryptoParams()
458 video_content->cryptos()[0].cipher_suite); in VerifyCryptoParams()
459 ASSERT_EQ(47U, video_content->cryptos()[0].key_params.size()); in VerifyCryptoParams()
461 video_content->protocol()); in VerifyCryptoParams()
475 const cricket::VideoContentDescription* video_content = in VerifyNoCryptoParams() local
478 ASSERT_TRUE(video_content != NULL); in VerifyNoCryptoParams()
479 ASSERT_EQ(0U, video_content->cryptos().size()); in VerifyNoCryptoParams()
485 video_content->protocol()); in VerifyNoCryptoParams()
[all …]
Dpeerconnection_unittest.cc294 const ContentInfo* video_content = in VerifyRejectedMediaInSessionDescription() local
296 EXPECT_EQ(can_receive_video(), !video_content->rejected); in VerifyRejectedMediaInSessionDescription()
Dwebrtcsession.cc241 const cricket::MediaContentDescription* video_content = in GetTrackIdBySsrc() local
245 if (cricket::GetStreamBySsrc(video_content->streams(), ssrc, &stream_out)) { in GetTrackIdBySsrc()
Dwebrtcsdp.cc827 const ContentInfo* video_content = GetFirstVideoContent(desc); in SdpSerialize() local
828 if (video_content) in SdpSerialize()
829 GetMediaStreamLabels(video_content, &media_stream_labels); in SdpSerialize()
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dcall.cc865 const ContentInfo* video_content = GetFirstVideoContent(updated_contents); in OnRemoteDescriptionUpdate() local
866 if (video_content) { in OnRemoteDescriptionUpdate()
868 static_cast<const VideoContentDescription*>(video_content->description); in OnRemoteDescriptionUpdate()
946 const ContentInfo* video_content = GetFirstVideoContent(updated_contents); in UpdateRemoteMediaStreams() local
947 if (video_content) { in UpdateRemoteMediaStreams()
949 static_cast<const VideoContentDescription*>(video_content->description); in UpdateRemoteMediaStreams()
Dmediasession.cc1636 const ContentInfo* video_content = GetFirstVideoContent(offer); in AddVideoContentForAnswer() local
1638 CreateTransportAnswer(video_content->name, offer, in AddVideoContentForAnswer()
1654 video_content->description), in AddVideoContentForAnswer()
1666 bool rejected = !options.has_video || video_content->rejected || in AddVideoContentForAnswer()
1671 if (!AddTransportAnswer(video_content->name, *(video_transport.get()), in AddVideoContentForAnswer()
1681 answer->AddContent(video_content->name, video_content->type, rejected, in AddVideoContentForAnswer()