Home
last modified time | relevance | path

Searched refs:mLineIndex (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DARDSDPUtils.m29 NSInteger mLineIndex = -1;
39 for (NSInteger i = 0; (i < lines.count) && (mLineIndex == -1 || !codecRtpMap);
43 mLineIndex = i;
56 if (mLineIndex == -1) {
65 [lines[mLineIndex] componentsSeparatedByString:mLineSeparator];
82 [lines replaceObjectAtIndex:mLineIndex
85 RTCLogWarning(@"Wrong SDP media description format: %@", lines[mLineIndex]);
DRTCICECandidate+JSON.m27 NSInteger mLineIndex = [num integerValue];
28 return [[RTCICECandidate alloc] initWithMid:mid index:mLineIndex sdp:sdp];
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java811 int mLineIndex = -1; in preferCodec() local
821 && (mLineIndex == -1 || codecRtpMap == null); i++) { in preferCodec()
823 mLineIndex = i; in preferCodec()
832 if (mLineIndex == -1) { in preferCodec()
841 + lines[mLineIndex]); in preferCodec()
842 String[] origMLineParts = lines[mLineIndex].split(" "); in preferCodec()
856 lines[mLineIndex] = newMLine.toString(); in preferCodec()
857 Log.d(TAG, "Change media description: " + lines[mLineIndex]); in preferCodec()
859 Log.e(TAG, "Wrong SDP media description format: " + lines[mLineIndex]); in preferCodec()