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

1 2 3 4

  /external/webrtc/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/webrtc/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/webrtc/webrtc/api/objctests/
RTCSessionDescriptionTest.mm 28 * SessionDescriptionInterface (based on the types and SDP strings being equal).
33 sdp:[self sdp]];
41 std::string sdp;
42 nativeDescription->ToString(&sdp);
43 EXPECT_EQ([self sdp].stdString, sdp);
51 [self sdp].stdString,
59 EXPECT_TRUE([[self sdp] isEqualToString:description.sdp]);
    [all...]
RTCIceCandidateTest.mm 27 NSString *sdp = @"candidate:4025901590 1 udp 2122265343 "
31 RTCIceCandidate *candidate = [[RTCIceCandidate alloc] initWithSdp:sdp
42 EXPECT_EQ(sdp.stdString, sdpString);
46 std::string sdp("candidate:4025901590 1 udp 2122265343 "
50 webrtc::CreateIceCandidate("audio", 0, sdp, nullptr);
57 EXPECT_EQ(sdp, iceCandidate.sdp.stdString);
  /external/webrtc/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/webrtc/webrtc/api/objc/
RTCSessionDescription.h 30 /** The SDP string representation of this session description. */
31 @property(nonatomic, readonly) NSString *sdp; variable
35 /** Initialize a session description with a type and SDP string. */
36 - (instancetype)initWithType:(RTCSdpType)type sdp:(NSString *)sdp
RTCIceCandidate.mm 21 @synthesize sdp = _sdp;
23 - (instancetype)initWithSdp:(NSString *)sdp
26 NSParameterAssert(sdp.length);
30 _sdp = [sdp copy];
47 std::string sdp;
48 candidate->ToString(&sdp);
50 return [self initWithSdp:[NSString stringForStdString:sdp]
RTCSessionDescription.mm 22 @synthesize sdp = _sdp;
24 - (instancetype)initWithType:(RTCSdpType)type sdp:(NSString *)sdp {
25 NSParameterAssert(sdp.length);
28 _sdp = [sdp copy];
61 std::string sdp;
62 nativeDescription->ToString(&sdp);
66 sdp:[NSString stringForStdString:sdp]];
RTCIceCandidate.h 25 * associated with in the SDP.
29 /** The SDP string for this candidate. */
30 @property(nonatomic, readonly) NSString *sdp; variable
35 * Initialize an RTCIceCandidate from SDP.
37 - (instancetype)initWithSdp:(NSString *)sdp
  /external/syslinux/core/fs/lib/
searchconfig.c 22 const char *sd, **sdp; local
25 for (sdp = search_directories; (sd = *sdp); sdp++) {
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
RTCICECandidate+JSON.m 25 NSString *sdp = dictionary[kRTCICECandidateSdpKey];
28 return [[RTCICECandidate alloc] initWithMid:mid index:mLineIndex sdp:sdp];
36 kRTCICECandidateSdpKey : self.sdp
RTCSessionDescription+JSON.m 14 static NSString const *kRTCSessionDescriptionSdpKey = @"sdp";
21 NSString *sdp = dictionary[kRTCSessionDescriptionSdpKey];
22 return [[RTCSessionDescription alloc] initWithType:type sdp:sdp];
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 123 std::string sdp; local
124 EXPECT_TRUE(candidate->ToString(&sdp));
125 // Give the user a chance to modify sdp for testing.
126 SignalOnIceCandidateCreated(&sdp);
128 sdp);
139 std::string sdp; local
140 EXPECT_TRUE(desc->ToString(&sdp));
143 << ": " << desc->type() << " sdp created: " << sdp;
145 // Give the user a chance to modify sdp for testing
179 << ": SetLocalDescription " << type << " " << sdp; local
191 << ": SetRemoteDescription " << type << " " << sdp; local
    [all...]
peerconnectiontestwrapper.h 76 void ReceiveOfferSdp(const std::string& sdp);
77 void ReceiveAnswerSdp(const std::string& sdp);
98 void SetLocalDescription(const std::string& type, const std::string& sdp);
99 void SetRemoteDescription(const std::string& type, const std::string& sdp);
  /external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
munge_sdp.js 13 function setSdpDefaultVideoCodec(sdp, codec) {
14 return setSdpDefaultCodec(sdp, 'video', codec);
18 * Returns a modified version of |sdp| where the |codec| has been promoted to be
23 function setSdpDefaultCodec(sdp, type, codec) {
24 var sdpLines = splitSdpLines(sdp);
30 'Missing a=rtpmap entry for |codec| = ' + codec + ' in ' + sdp);
37 '\'m=' + type + '\' line missing from |sdp|.');
48 function getSdpDefaultVideoCodec(sdp) {
49 return getSdpDefaultCodec(sdp, 'video');
53 * Gets the default codec according to the |sdp|, i.e. the name of the code
    [all...]
  /external/webrtc/talk/app/webrtc/
jsepicecandidate.cc 39 const std::string& sdp,
42 if (!jsep_ice->Initialize(sdp, error)) {
66 bool JsepIceCandidate::Initialize(const std::string& sdp, SdpParseError* err) {
67 return SdpDeserializeCandidate(sdp, this, err);
jsepsessiondescription_unittest.cc 57 // In SDP this is described by two m lines, one audio and one video.
114 std::string sdp; local
115 EXPECT_TRUE(desc->ToString(&sdp));
116 EXPECT_FALSE(sdp.empty());
117 return sdp;
120 SessionDescriptionInterface* DeSerialize(const std::string& sdp) {
122 EXPECT_TRUE(desc->Initialize(sdp, NULL));
220 std::string sdp = Serialize(jsep_desc_.get()); local
222 scoped_ptr<SessionDescriptionInterface> parsed_jsep_desc(DeSerialize(sdp));
226 EXPECT_EQ(sdp, parsed_sdp)
232 std::string sdp = Serialize(jsep_desc_.get()); local
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
AppRTCClient.java 47 * Send offer SDP to the other participant.
49 public void sendOfferSdp(final SessionDescription sdp);
52 * Send answer SDP to the other participant.
54 public void sendAnswerSdp(final SessionDescription sdp);
106 * Callback fired once remote SDP is received.
108 public void onRemoteDescription(final SessionDescription sdp);
  /external/webrtc/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...]
  /external/syslinux/com32/lib/syslinux/
load_linux.c 162 struct setup_data *sdp; local
423 for (sdp = setup_data->next; sdp != setup_data; sdp = sdp->next) {
427 size_t size = sdp->hdr.len + sizeof(sdp->hdr);
429 if (!sdp->data || !sdp->hdr.len)
450 prev_ptr = &sdp->hdr.next
    [all...]

Completed in 459 milliseconds

1 2 3 4