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 1580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1591 kCodecParamMaxBitrate, | 1591 kCodecParamMaxBitrate, |
1592 kCodecParamMinBitrate, | 1592 kCodecParamMinBitrate, |
1593 kCodecParamMaxQuantization, | 1593 kCodecParamMaxQuantization, |
1594 kCodecParamSctpProtocol, | 1594 kCodecParamSctpProtocol, |
1595 kCodecParamSctpStreams, | 1595 kCodecParamSctpStreams, |
1596 kCodecParamMaxAverageBitrate, | 1596 kCodecParamMaxAverageBitrate, |
1597 kCodecParamMaxPlaybackRate, | 1597 kCodecParamMaxPlaybackRate, |
1598 kCodecParamAssociatedPayloadType, | 1598 kCodecParamAssociatedPayloadType, |
1599 cricket::kH264FmtpPacketizationMode, | 1599 cricket::kH264FmtpPacketizationMode, |
1600 cricket::kH264FmtpLevelAsymmetryAllowed, | 1600 cricket::kH264FmtpLevelAsymmetryAllowed, |
1601 cricket::kH264FmtpProfileLevelId}; | 1601 cricket::kH264FmtpProfileLevelId, |
| 1602 cricket::kFlexfecFmtpRepairWindow}; |
1602 for (size_t i = 0; i < arraysize(kFmtpParams); ++i) { | 1603 for (size_t i = 0; i < arraysize(kFmtpParams); ++i) { |
1603 if (name.compare(kFmtpParams[i]) == 0) { | 1604 if (name.compare(kFmtpParams[i]) == 0) { |
1604 return true; | 1605 return true; |
1605 } | 1606 } |
1606 } | 1607 } |
1607 return false; | 1608 return false; |
1608 } | 1609 } |
1609 | 1610 |
1610 // Retreives fmtp parameters from |params|, which may contain other parameters | 1611 // Retreives fmtp parameters from |params|, which may contain other parameters |
1611 // as well, and puts them in |fmtp_parameters|. | 1612 // as well, and puts them in |fmtp_parameters|. |
(...skipping 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3171 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( | 3172 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( |
3172 media_desc, payload_type, feedback_param); | 3173 media_desc, payload_type, feedback_param); |
3173 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { | 3174 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
3174 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( | 3175 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( |
3175 media_desc, payload_type, feedback_param); | 3176 media_desc, payload_type, feedback_param); |
3176 } | 3177 } |
3177 return true; | 3178 return true; |
3178 } | 3179 } |
3179 | 3180 |
3180 } // namespace webrtc | 3181 } // namespace webrtc |
OLD | NEW |