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 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "a=fingerprint:sha-256 A9:D5:8D:A8:69:22:39:60:92:AD:94:1A:22:2D:5E:" | 74 "a=fingerprint:sha-256 A9:D5:8D:A8:69:22:39:60:92:AD:94:1A:22:2D:5E:" |
75 "A5:4A:A9:18:C2:35:5D:46:5E:59:BD:1C:AF:38:9F:E6:E1\r\n" | 75 "A5:4A:A9:18:C2:35:5D:46:5E:59:BD:1C:AF:38:9F:E6:E1\r\n" |
76 "a=setup:active\r\n" | 76 "a=setup:active\r\n" |
77 "a=mid:audio\r\n" | 77 "a=mid:audio\r\n" |
78 "a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\n" | 78 "a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\n" |
79 "a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/" | 79 "a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/" |
80 "abs-send-time\r\n" | 80 "abs-send-time\r\n" |
81 "a=sendrecv\r\n" | 81 "a=sendrecv\r\n" |
82 "a=rtcp-mux\r\n" | 82 "a=rtcp-mux\r\n" |
83 "a=rtpmap:111 opus/48000/2\r\n" | 83 "a=rtpmap:111 opus/48000/2\r\n" |
84 "a=fmtp:111 minptime=10; useinbandfec=1\r\n" | 84 "a=fmtp:111 minptime=10;useinbandfec=1\r\n" |
85 "a=rtpmap:103 ISAC/16000\r\n" | 85 "a=rtpmap:103 ISAC/16000\r\n" |
86 "a=rtpmap:9 G722/8000\r\n" | 86 "a=rtpmap:9 G722/8000\r\n" |
87 "a=rtpmap:0 PCMU/8000\r\n" | 87 "a=rtpmap:0 PCMU/8000\r\n" |
88 "a=rtpmap:8 PCMA/8000\r\n" | 88 "a=rtpmap:8 PCMA/8000\r\n" |
89 "a=rtpmap:126 telephone-event/8000\r\n" | 89 "a=rtpmap:126 telephone-event/8000\r\n" |
90 "a=maxptime:60\r\n" | 90 "a=maxptime:60\r\n" |
91 "a=ssrc:1504474588 cname:V+FdIC5AJpxLhdYQ\r\n" | 91 "a=ssrc:1504474588 cname:V+FdIC5AJpxLhdYQ\r\n" |
92 "a=ssrc:1504474588 msid:ARDAMS ARDAMSa0\r\n" | 92 "a=ssrc:1504474588 msid:ARDAMS ARDAMSa0\r\n" |
93 "a=ssrc:1504474588 mslabel:ARDAMS\r\n" | 93 "a=ssrc:1504474588 mslabel:ARDAMS\r\n" |
94 "a=ssrc:1504474588 label:ARDAMSa0\r\n" | 94 "a=ssrc:1504474588 label:ARDAMSa0\r\n" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 [test testSessionDescriptionConversion]; | 135 [test testSessionDescriptionConversion]; |
136 } | 136 } |
137 } | 137 } |
138 | 138 |
139 TEST(RTCSessionDescriptionTest, InitFromSessionDescriptionTest) { | 139 TEST(RTCSessionDescriptionTest, InitFromSessionDescriptionTest) { |
140 @autoreleasepool { | 140 @autoreleasepool { |
141 RTCSessionDescriptionTest *test = [[RTCSessionDescriptionTest alloc] init]; | 141 RTCSessionDescriptionTest *test = [[RTCSessionDescriptionTest alloc] init]; |
142 [test testInitFromNativeSessionDescription]; | 142 [test testInitFromNativeSessionDescription]; |
143 } | 143 } |
144 } | 144 } |
OLD | NEW |