/external/chromium/third_party/libjingle/source/talk/session/phone/ |
mediasessionclient.cc | 260 const ContentInfo* audio_content = GetFirstAudioContent(offer); local 261 if (audio_content) { 263 static_cast<const AudioContentDescription*>(audio_content->description); 293 accept->AddContent(audio_content->name, audio_content->type, audio_accept); 365 const ContentInfo* audio_content = GetFirstAudioContent(accept); local 366 const AudioContentDescription* audio_accept = (!audio_content) ? NULL : 367 static_cast<const AudioContentDescription*>(audio_content->description); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamsignaling.cc | 368 const cricket::ContentInfo* audio_content = GetFirstAudioContent(remote_desc); local 369 if (audio_content) { 372 audio_content->description); 421 const cricket::ContentInfo* audio_content = local 423 if (audio_content) { 424 if (audio_content->rejected) { 429 audio_content->description); [all...] |
webrtcsession_unittest.cc | 395 const cricket::AudioContentDescription* audio_content = local 398 ASSERT_TRUE(audio_content != NULL); 399 ASSERT_EQ(1U, audio_content->cryptos().size()); 400 ASSERT_EQ(47U, audio_content->cryptos()[0].key_params.size()); 402 audio_content->cryptos()[0].cipher_suite); 404 audio_content->protocol()); 423 const cricket::AudioContentDescription* audio_content = local 426 ASSERT_TRUE(audio_content != NULL); 427 ASSERT_EQ(0U, audio_content->cryptos().size()); 439 audio_content->protocol()) [all...] |
webrtcsession.cc | 218 const cricket::MediaContentDescription* audio_content = local 222 if (!cricket::GetStreamByIds(audio_content->streams(), "", track_id, 240 const cricket::MediaContentDescription* audio_content = local 244 if (cricket::GetStreamBySsrc(audio_content->streams(), ssrc, &stream_out)) { [all...] |
webrtcsdp.cc | 861 const ContentInfo* audio_content = GetFirstAudioContent(desc); local [all...] |
peerconnection_unittest.cc | 278 const ContentInfo* audio_content = local 280 EXPECT_EQ(can_receive_audio(), !audio_content->rejected); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
call.cc | 840 const ContentInfo* audio_content = GetFirstAudioContent(updated_contents); local 841 if (audio_content) { 843 static_cast<const AudioContentDescription*>(audio_content->description); 913 const ContentInfo* audio_content = GetFirstAudioContent(updated_contents); local 914 if (audio_content) { 916 static_cast<const AudioContentDescription*>(audio_content->description); [all...] |
mediasession.cc | 1263 const ContentInfo* audio_content = GetFirstAudioContent(offer); local [all...] |
mediasessionclient.cc | 136 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); [all...] |
mediasession_unittest.cc | 1940 const ContentInfo* audio_content = offer->GetContentByName("audio"); local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
driver.py | 374 # returns (text_content, audio_content)
|