OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 2495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2506 continue; | 2506 continue; |
2507 } | 2507 } |
2508 | 2508 |
2509 case VideoCodec::CODEC_ULPFEC: { | 2509 case VideoCodec::CODEC_ULPFEC: { |
2510 // ULPFEC payload type, should not have duplicates. | 2510 // ULPFEC payload type, should not have duplicates. |
2511 RTC_DCHECK(ulpfec_config.ulpfec_payload_type == -1); | 2511 RTC_DCHECK(ulpfec_config.ulpfec_payload_type == -1); |
2512 ulpfec_config.ulpfec_payload_type = in_codec.id; | 2512 ulpfec_config.ulpfec_payload_type = in_codec.id; |
2513 continue; | 2513 continue; |
2514 } | 2514 } |
2515 | 2515 |
| 2516 case VideoCodec::CODEC_FLEXFEC: { |
| 2517 // TODO(brandtr): To be implemented. |
| 2518 continue; |
| 2519 } |
| 2520 |
2516 case VideoCodec::CODEC_RTX: { | 2521 case VideoCodec::CODEC_RTX: { |
2517 int associated_payload_type; | 2522 int associated_payload_type; |
2518 if (!in_codec.GetParam(kCodecParamAssociatedPayloadType, | 2523 if (!in_codec.GetParam(kCodecParamAssociatedPayloadType, |
2519 &associated_payload_type) || | 2524 &associated_payload_type) || |
2520 !IsValidRtpPayloadType(associated_payload_type)) { | 2525 !IsValidRtpPayloadType(associated_payload_type)) { |
2521 LOG(LS_ERROR) | 2526 LOG(LS_ERROR) |
2522 << "RTX codec with invalid or no associated payload type: " | 2527 << "RTX codec with invalid or no associated payload type: " |
2523 << in_codec.ToString(); | 2528 << in_codec.ToString(); |
2524 return std::vector<VideoCodecSettings>(); | 2529 return std::vector<VideoCodecSettings>(); |
2525 } | 2530 } |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2563 rtx_mapping[video_codecs[i].codec.id] != | 2568 rtx_mapping[video_codecs[i].codec.id] != |
2564 ulpfec_config.red_payload_type) { | 2569 ulpfec_config.red_payload_type) { |
2565 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; | 2570 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; |
2566 } | 2571 } |
2567 } | 2572 } |
2568 | 2573 |
2569 return video_codecs; | 2574 return video_codecs; |
2570 } | 2575 } |
2571 | 2576 |
2572 } // namespace cricket | 2577 } // namespace cricket |
OLD | NEW |