HomeSort by relevance Sort by last modified time
    Searched refs:sdp (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescriptionCallback.idl 32 void handleEvent(RTCSessionDescription sdp);
RTCSessionDescription.cpp 60 String sdp; local
61 descriptionInitDict.get("sdp", sdp);
63 return adoptRefWillBeNoop(new RTCSessionDescription(blink::WebRTCSessionDescription(type, sdp)));
90 String RTCSessionDescription::sdp() function in class:WebCore::RTCSessionDescription
92 return m_webSessionDescription.sdp();
95 void RTCSessionDescription::setSdp(const String& sdp)
97 m_webSessionDescription.setSDP(sdp);
RTCSessionDescription.idl 37 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString sdp;
RTCSessionDescription.h 53 String sdp();
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
IceCandidate.java 37 public final String sdp; field in class:IceCandidate
39 public IceCandidate(String sdpMid, int sdpMLineIndex, String sdp) {
42 this.sdp = sdp;
46 return sdpMid + ":" + sdpMLineIndex + ":" + sdp;
SdpObserver.java 30 /** Interface for observing SDP-related events. */
33 public void onCreateSuccess(SessionDescription sdp);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebRTCSessionDescription.cpp 43 static PassRefPtr<WebRTCSessionDescriptionPrivate> create(const WebString& type, const WebString& sdp);
48 WebString sdp() { return m_sdp; } function in class:blink::FINAL
49 void setSdp(const WebString& sdp) { m_sdp = sdp; }
52 WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp);
58 PassRefPtr<WebRTCSessionDescriptionPrivate> WebRTCSessionDescriptionPrivate::create(const WebString& type, const WebString& sdp)
60 return adoptRef(new WebRTCSessionDescriptionPrivate(type, sdp));
63 WebRTCSessionDescriptionPrivate::WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp)
65 , m_sdp(sdp)
79 void WebRTCSessionDescription::initialize(const WebString& type, const WebString& sdp)
96 WebString WebRTCSessionDescription::sdp() const function in class:blink::WebRTCSessionDescription
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCICECandidate.mm 38 @synthesize sdp = _sdp;
42 sdp:(NSString*)sdp {
43 if (!sdpMid || !sdp) {
50 _sdp = [sdp copy];
59 self.sdp];
68 std::string sdp;
69 if (candidate->ToString(&sdp)) {
72 _sdp = @(sdp.c_str());
83 [self.sdpMid UTF8String], self.sdpMLineIndex, [self.sdp UTF8String])
    [all...]
RTCSessionDescription.mm 39 - (id)initWithType:(NSString*)type sdp:(NSString*)sdp {
40 if (!type || !sdp) {
45 _description = sdp;
64 std::string sdp;
65 if (!sessionDescription->ToString(&sdp)) {
69 _description = @(sdp.c_str());
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCICECandidate.h 38 // This indicates the index (starting at zero) of m-line in the SDP this
42 // Creates an SDP-ized form of this candidate.
43 @property(nonatomic, copy, readonly) NSString* sdp; variable
45 // Creates an ICECandidateInterface based on SDP string.
48 sdp:(NSString*)sdp;
RTCSessionDescription.h 35 // The SDP description.
41 - (id)initWithType:(NSString *)type sdp:(NSString *)sdp;
RTCSessionDescriptionDelegate.h 42 didCreateSessionDescription:(RTCSessionDescription *)sdp
  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCSessionDescription.h 69 BLINK_PLATFORM_EXPORT void initialize(const WebString& type, const WebString& sdp);
75 BLINK_PLATFORM_EXPORT WebString sdp() const;
79 WebRTCSessionDescription(WebString type, WebString sdp)
81 this->initialize(type, sdp);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 124 std::string sdp; local
125 EXPECT_TRUE(candidate->ToString(&sdp));
126 // Give the user a chance to modify sdp for testing.
127 SignalOnIceCandidateCreated(&sdp);
129 sdp);
140 std::string sdp; local
141 EXPECT_TRUE(desc->ToString(&sdp));
144 << ": " << desc->type() << " sdp created: " << sdp;
146 // Give the user a chance to modify sdp for testing
180 << ": SetLocalDescription " << type << " " << sdp; local
192 << ": SetRemoteDescription " << type << " " << sdp; local
    [all...]
peerconnectiontestwrapper.h 82 void ReceiveOfferSdp(const std::string& sdp);
83 void ReceiveAnswerSdp(const std::string& sdp);
104 void SetLocalDescription(const std::string& type, const std::string& sdp);
105 void SetRemoteDescription(const std::string& type, const std::string& sdp);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepicecandidate.cc 39 const std::string& sdp) {
40 return CreateIceCandidate(sdp_mid, sdp_mline_index, sdp, NULL);
45 const std::string& sdp,
48 if (!jsep_ice->Initialize(sdp, error)) {
72 bool JsepIceCandidate::Initialize(const std::string& sdp, SdpParseError* err) {
73 return SdpDeserializeCandidate(sdp, this, err);
peerconnectionendtoend_unittest.cc 56 std::string* sdp) {
59 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
61 size_t end_ssrc = sdp->find(kSdpLineEnd, ssrc_pos);
62 sdp->erase(ssrc_pos, end_ssrc - ssrc_pos + strlen(kSdpLineEnd));
82 void UseExternalSdes(std::string* sdp) {
84 RemoveLinesFromSdp("a=crypto", sdp);
85 RemoveLinesFromSdp("a=fingerprint", sdp);
96 InjectAfter("a=mid:audio\r\n", kAudioSdes, sdp);
97 InjectAfter("a=mid:video\r\n", kVideoSdes, sdp);
98 InjectAfter("a=mid:data\r\n", kDataSdes, sdp);
    [all...]
jsep.h 48 // The sdp line that causes the error.
64 // This indeicates the index (starting at zero) of m-line in the SDP this
68 // Creates a SDP-ized form of this candidate.
72 // Creates a IceCandidateInterface based on SDP string.
73 // Returns NULL if the sdp string can't be parsed.
77 const std::string& sdp);
82 const std::string& sdp,
111 // RFC 4566 for the SDP o= line.
125 // Serializes the description to SDP.
129 // Creates a SessionDescriptionInterface based on SDP string and the type
    [all...]
jsepsessiondescription_unittest.cc 57 // In SDP this is described by two m lines, one audio and one video.
125 std::string sdp; local
126 EXPECT_TRUE(desc->ToString(&sdp));
127 EXPECT_FALSE(sdp.empty());
128 return sdp;
131 SessionDescriptionInterface* DeSerialize(const std::string& sdp) {
133 EXPECT_TRUE(desc->Initialize(sdp, NULL));
231 std::string sdp = Serialize(jsep_desc_.get()); local
233 scoped_ptr<SessionDescriptionInterface> parsed_jsep_desc(DeSerialize(sdp));
237 EXPECT_EQ(sdp, parsed_sdp)
243 std::string sdp = Serialize(jsep_desc_.get()); local
    [all...]
jsepsessiondescription.cc 67 const std::string& sdp) {
68 return CreateSessionDescription(type, sdp, NULL);
72 const std::string& sdp,
79 if (!jsep_desc->Initialize(sdp, error)) {
106 bool JsepSessionDescription::Initialize(const std::string& sdp,
108 return SdpDeserialize(sdp, this, error);
peerconnectioninterface_unittest.cc 109 void SetSsrcToZero(std::string* sdp) {
113 while ((ssrc_pos = sdp->find(kSdpSsrcAtribute, ssrc_pos)) !=
115 size_t end_ssrc = sdp->find(" ", ssrc_pos);
116 sdp->replace(ssrc_pos, end_ssrc - ssrc_pos, kSdpSsrcAtributeZero);
186 std::string sdp; local
187 EXPECT_TRUE(candidate->ToString(&sdp));
188 EXPECT_LT(0u, sdp.size());
190 candidate->sdp_mline_index(), sdp, NULL));
443 std::string sdp; local
444 EXPECT_TRUE(offer->ToString(&sdp));
463 std::string sdp; local
476 std::string sdp; local
487 std::string sdp; local
502 std::string sdp; local
552 std::string sdp; local
895 std::string sdp; local
1074 std::string sdp; local
1202 std::string sdp; local
    [all...]
  /external/bluetooth/bluedroid/stack/
Android.mk 17 $(LOCAL_PATH)/sdp \
122 ./sdp/sdp_server.c \
123 ./sdp/sdp_main.c \
124 ./sdp/sdp_db.c \
125 ./sdp/sdp_utils.c \
126 ./sdp/sdp_api.c \
127 ./sdp/sdp_discovery.c \
  /external/chromium_org/third_party/webrtc/tools/loopback_test/
loopback_test.js 61 desc.sdp = desc.sdp.replace(/(m=video 1 [^\r]+)(116 117)(\r\n)/g,
63 desc.sdp = desc.sdp.replace(/a=rtpmap:116 red\/90000\r\n/g, '');
64 desc.sdp = desc.sdp.replace(/a=rtpmap:117 ulpfec\/90000\r\n/g, '');
72 // Constraint max video bitrate by modifying the SDP when creating an answer.
78 desc.sdp = desc.sdp.replace(
178 trace("Offer: " + desc.sdp);
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp 430 AString sdp; local
431 sdp = "v=0\r\n";
433 sdp.append("o=- ");
436 sdp.append(ntp);
437 sdp.append(" ");
438 sdp.append(ntp);
439 sdp.append(" IN IP4 127.0.0.0\r\n");
441 sdp.append(
449 sdp.append(inet_ntoa(addr));
451 sdp.append
    [all...]
MyTransmitter.h 94 mStreamURL.append("/bazong.sdp");
152 AString sdp; local
153 sdp = "v=0\r\n";
155 sdp.append("o=- ");
158 sdp.append(ntp);
159 sdp.append(" ");
160 sdp.append(ntp);
161 sdp.append(" IN IP4 127.0.0.0\r\n");
163 sdp.append(
171 sdp.append(inet_ntoa(addr))
    [all...]

Completed in 979 milliseconds

1 2 3