Searched refs:audio_content (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediastreamsignaling.cc476 const cricket::ContentInfo* audio_content = GetFirstAudioContent(remote_desc); local
477 if (audio_content) {
480 audio_content->description);
531 const cricket::ContentInfo* audio_content = local
533 if (audio_content) {
534 if (audio_content->rejected) {
539 audio_content->description);
H A Dwebrtcsession_unittest.cc439 const cricket::AudioContentDescription* audio_content = local
442 ASSERT_TRUE(audio_content != NULL);
443 ASSERT_EQ(1U, audio_content->cryptos().size());
444 ASSERT_EQ(47U, audio_content->cryptos()[0].key_params.size());
446 audio_content->cryptos()[0].cipher_suite);
448 audio_content->protocol());
467 const cricket::AudioContentDescription* audio_content = local
470 ASSERT_TRUE(audio_content != NULL);
471 ASSERT_EQ(0U, audio_content->cryptos().size());
483 audio_content
[all...]
H A Dwebrtcsession.cc208 const cricket::MediaContentDescription* audio_content = local
212 if (!cricket::GetStreamByIds(audio_content->streams(), "", track_id,
228 const cricket::MediaContentDescription* audio_content = local
232 if (cricket::GetStreamBySsrc(audio_content->streams(), ssrc, &stream_out)) {
H A Dpeerconnection_unittest.cc287 const ContentInfo* audio_content = local
289 EXPECT_EQ(can_receive_audio(), !audio_content->rejected);
H A Dwebrtcsdp.cc823 const ContentInfo* audio_content = GetFirstAudioContent(desc); local
824 if (audio_content)
825 GetMediaStreamLabels(audio_content, &media_stream_labels);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dcall.cc856 const ContentInfo* audio_content = GetFirstAudioContent(updated_contents); local
857 if (audio_content) {
859 static_cast<const AudioContentDescription*>(audio_content->description);
935 const ContentInfo* audio_content = GetFirstAudioContent(updated_contents); local
936 if (audio_content) {
938 static_cast<const AudioContentDescription*>(audio_content->description);
H A Dmediasession.cc1576 const ContentInfo* audio_content = GetFirstAudioContent(offer); local
1579 CreateTransportAnswer(audio_content->name, offer,
1600 audio_content->description),
1613 bool rejected = !options.has_audio || audio_content->rejected ||
1618 AddTransportAnswer(audio_content->name, *(audio_transport.get()), answer);
1625 answer->AddContent(audio_content->name, audio_content->type, rejected,
H A Dmediasessionclient.cc136 const ContentInfo* audio_content = GetFirstAudioContent(accept); local
137 bool audio_rejected = (!audio_content) ? true : audio_content->rejected;
138 const AudioContentDescription* audio_desc = (!audio_content) ? NULL :
139 static_cast<const AudioContentDescription*>(audio_content->description);
H A Dmediasession_unittest.cc2120 const ContentInfo* audio_content = offer->GetContentByName("audio"); local
2121 EXPECT_FALSE(VerifyNoCNCodecs(audio_content));
2126 audio_content = offer->GetContentByName("audio");
2127 EXPECT_TRUE(VerifyNoCNCodecs(audio_content));
2131 audio_content = answer->GetContentByName("audio");
2132 EXPECT_TRUE(VerifyNoCNCodecs(audio_content));

Completed in 295 milliseconds