Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1187)

Side by Side Diff: webrtc/api/webrtcsdp.cc

Issue 2470103002: Add new codec for FlexFEC. (Closed)
Patch Set: Rebase. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/common_types.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698