OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #import "ARDSDPUtils.h" | 11 #import "ARDSDPUtils.h" |
12 | 12 |
13 #import "RTCLogging.h" | 13 #import "webrtc/api/objc/RTCSessionDescription.h" |
14 #import "RTCSessionDescription.h" | 14 #import "webrtc/base/objc/RTCLogging.h" |
15 | 15 |
16 @implementation ARDSDPUtils | 16 @implementation ARDSDPUtils |
17 | 17 |
18 + (RTCSessionDescription *) | 18 + (RTCSessionDescription *) |
19 descriptionForDescription:(RTCSessionDescription *)description | 19 descriptionForDescription:(RTCSessionDescription *)description |
20 preferredVideoCodec:(NSString *)codec { | 20 preferredVideoCodec:(NSString *)codec { |
21 NSString *sdpString = description.description; | 21 NSString *sdpString = description.sdp; |
22 NSString *lineSeparator = @"\n"; | 22 NSString *lineSeparator = @"\n"; |
23 NSString *mLineSeparator = @" "; | 23 NSString *mLineSeparator = @" "; |
24 // Copied from PeerConnectionClient.java. | 24 // Copied from PeerConnectionClient.java. |
25 // TODO(tkchin): Move this to a shared C++ file. | 25 // TODO(tkchin): Move this to a shared C++ file. |
26 NSMutableArray *lines = | 26 NSMutableArray *lines = |
27 [NSMutableArray arrayWithArray: | 27 [NSMutableArray arrayWithArray: |
28 [sdpString componentsSeparatedByString:lineSeparator]]; | 28 [sdpString componentsSeparatedByString:lineSeparator]]; |
29 NSInteger mLineIndex = -1; | 29 NSInteger mLineIndex = -1; |
30 NSString *codecRtpMap = nil; | 30 NSString *codecRtpMap = nil; |
31 // a=rtpmap:<payload type> <encoding name>/<clock rate> | 31 // a=rtpmap:<payload type> <encoding name>/<clock rate> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 withObject:newMLine]; | 83 withObject:newMLine]; |
84 } else { | 84 } else { |
85 RTCLogWarning(@"Wrong SDP media description format: %@", lines[mLineIndex]); | 85 RTCLogWarning(@"Wrong SDP media description format: %@", lines[mLineIndex]); |
86 } | 86 } |
87 NSString *mangledSdpString = [lines componentsJoinedByString:lineSeparator]; | 87 NSString *mangledSdpString = [lines componentsJoinedByString:lineSeparator]; |
88 return [[RTCSessionDescription alloc] initWithType:description.type | 88 return [[RTCSessionDescription alloc] initWithType:description.type |
89 sdp:mangledSdpString]; | 89 sdp:mangledSdpString]; |
90 } | 90 } |
91 | 91 |
92 @end | 92 @end |
OLD | NEW |