Home | History | Annotate | Download | only in webrtc

Lines Matching defs:sdp

105                                std::string* sdp) {
108 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
110 size_t end_ssrc = sdp->find(kSdpLineEnd, ssrc_pos);
111 sdp->erase(ssrc_pos, end_ssrc - ssrc_pos + strlen(kSdpLineEnd));
619 std::string sdp;
620 EXPECT_TRUE(offer->ToString(&sdp));
623 webrtc::SessionDescriptionInterface::kOffer, sdp);
769 std::string sdp;
770 EXPECT_TRUE(answer->ToString(&sdp));
774 webrtc::SessionDescriptionInterface::kAnswer, sdp);
842 // This modifies all received SDP messages before they are processed.
843 void FilterIncomingSdpMessage(std::string* sdp) {
846 RemoveLinesFromSdp(kSdpSsrcAttribute, sdp);
848 RemoveLinesFromSdp(kSdpMsidSupportedAttribute, sdp);
852 RemoveLinesFromSdp(kSdpBundleAttribute, sdp);
856 RemoveLinesFromSdp(kSdpSdesCryptoAttribute, sdp);
862 bool remove_msid_; // True if MSID should be removed in received SDP.
863 bool remove_bundle_; // True if bundle should be removed in received SDP.
864 bool remove_sdes_; // True if a=crypto should be removed in received SDP.
1199 // the SDP strings from the caller.
1429 // Create a SDP string of the first audio candidate for both clients.
1450 // Create a SDP string of the first audio candidate for both clients again.