| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2011 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 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 << fp->GetRfc4572Fingerprint(); | 1369 << fp->GetRfc4572Fingerprint(); |
| 1370 AddLine(os.str(), message); | 1370 AddLine(os.str(), message); |
| 1371 | 1371 |
| 1372 // Inserting setup attribute. | 1372 // Inserting setup attribute. |
| 1373 if (transport_info->description.connection_role != | 1373 if (transport_info->description.connection_role != |
| 1374 cricket::CONNECTIONROLE_NONE) { | 1374 cricket::CONNECTIONROLE_NONE) { |
| 1375 // Making sure we are not using "passive" mode. | 1375 // Making sure we are not using "passive" mode. |
| 1376 cricket::ConnectionRole role = | 1376 cricket::ConnectionRole role = |
| 1377 transport_info->description.connection_role; | 1377 transport_info->description.connection_role; |
| 1378 std::string dtls_role_str; | 1378 std::string dtls_role_str; |
| 1379 VERIFY(cricket::ConnectionRoleToString(role, &dtls_role_str)); | 1379 bool res = cricket::ConnectionRoleToString(role, &dtls_role_str); |
| 1380 RTC_DCHECK(res); |
| 1380 InitAttrLine(kAttributeSetup, &os); | 1381 InitAttrLine(kAttributeSetup, &os); |
| 1381 os << kSdpDelimiterColon << dtls_role_str; | 1382 os << kSdpDelimiterColon << dtls_role_str; |
| 1382 AddLine(os.str(), message); | 1383 AddLine(os.str(), message); |
| 1383 } | 1384 } |
| 1384 } | 1385 } |
| 1385 } | 1386 } |
| 1386 | 1387 |
| 1387 // RFC 3388 | 1388 // RFC 3388 |
| 1388 // mid-attribute = "a=mid:" identification-tag | 1389 // mid-attribute = "a=mid:" identification-tag |
| 1389 // identification-tag = token | 1390 // identification-tag = token |
| (...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3191 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( | 3192 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( |
| 3192 media_desc, payload_type, feedback_param); | 3193 media_desc, payload_type, feedback_param); |
| 3193 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { | 3194 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
| 3194 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( | 3195 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( |
| 3195 media_desc, payload_type, feedback_param); | 3196 media_desc, payload_type, feedback_param); |
| 3196 } | 3197 } |
| 3197 return true; | 3198 return true; |
| 3198 } | 3199 } |
| 3199 | 3200 |
| 3200 } // namespace webrtc | 3201 } // namespace webrtc |
| OLD | NEW |