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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 std::stringstream out; | 631 std::stringstream out; |
632 const std::vector<VideoCodec>& codecs = | 632 const std::vector<VideoCodec>& codecs = |
633 external_encoder_factory->supported_codecs(); | 633 external_encoder_factory->supported_codecs(); |
634 for (size_t i = 0; i < codecs.size(); ++i) { | 634 for (size_t i = 0; i < codecs.size(); ++i) { |
635 VideoCodec codec = codecs[i]; | 635 VideoCodec codec = codecs[i]; |
636 out << codec.name; | 636 out << codec.name; |
637 if (i != codecs.size() - 1) { | 637 if (i != codecs.size() - 1) { |
638 out << ", "; | 638 out << ", "; |
639 } | 639 } |
640 // Don't add internally-supported codecs twice. | 640 // Don't add internally-supported codecs twice. |
641 if (IsCodecSupported(supported_codecs, codec)) | 641 if (FindMatchingCodec(supported_codecs, codec)) |
642 continue; | 642 continue; |
643 | 643 |
644 // External video encoders are given payloads 120-127. This also means that | 644 // External video encoders are given payloads 120-127. This also means that |
645 // we only support up to 8 external payload types. | 645 // we only support up to 8 external payload types. |
646 // TODO(deadbeef): mediasession.cc already has code to dynamically | 646 // TODO(deadbeef): mediasession.cc already has code to dynamically |
647 // determine a payload type. We should be able to just leave the payload | 647 // determine a payload type. We should be able to just leave the payload |
648 // type empty and let mediasession determine it. However, currently RTX | 648 // type empty and let mediasession determine it. However, currently RTX |
649 // codecs are associated to codecs by payload type, meaning we DO need | 649 // codecs are associated to codecs by payload type, meaning we DO need |
650 // to allocate unique payload types here. So to make this change we would | 650 // to allocate unique payload types here. So to make this change we would |
651 // need to make RTX codecs associated by name instead. | 651 // need to make RTX codecs associated by name instead. |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 delete kv.second; | 693 delete kv.second; |
694 } | 694 } |
695 | 695 |
696 rtc::Optional<WebRtcVideoChannel2::VideoCodecSettings> | 696 rtc::Optional<WebRtcVideoChannel2::VideoCodecSettings> |
697 WebRtcVideoChannel2::SelectSendVideoCodec( | 697 WebRtcVideoChannel2::SelectSendVideoCodec( |
698 const std::vector<VideoCodecSettings>& remote_mapped_codecs) const { | 698 const std::vector<VideoCodecSettings>& remote_mapped_codecs) const { |
699 const std::vector<VideoCodec> local_supported_codecs = | 699 const std::vector<VideoCodec> local_supported_codecs = |
700 GetSupportedCodecs(external_encoder_factory_); | 700 GetSupportedCodecs(external_encoder_factory_); |
701 // Select the first remote codec that is supported locally. | 701 // Select the first remote codec that is supported locally. |
702 for (const VideoCodecSettings& remote_mapped_codec : remote_mapped_codecs) { | 702 for (const VideoCodecSettings& remote_mapped_codec : remote_mapped_codecs) { |
703 if (IsCodecSupported(local_supported_codecs, remote_mapped_codec.codec)) | 703 // For H264, we will limit the encode level to the remote offered level |
| 704 // regardless if level asymmetry is allowed or not. This is strictly not |
| 705 // following the spec in https://tools.ietf.org/html/rfc6184#section-8.2.2 |
| 706 // since we should limit the encode level to the lower of local and remote |
| 707 // level when level asymmetry is not allowed. |
| 708 if (FindMatchingCodec(local_supported_codecs, remote_mapped_codec.codec)) |
704 return rtc::Optional<VideoCodecSettings>(remote_mapped_codec); | 709 return rtc::Optional<VideoCodecSettings>(remote_mapped_codec); |
705 } | 710 } |
706 // No remote codec was supported. | 711 // No remote codec was supported. |
707 return rtc::Optional<VideoCodecSettings>(); | 712 return rtc::Optional<VideoCodecSettings>(); |
708 } | 713 } |
709 | 714 |
710 bool WebRtcVideoChannel2::ReceiveCodecsHaveChanged( | 715 bool WebRtcVideoChannel2::ReceiveCodecsHaveChanged( |
711 std::vector<VideoCodecSettings> before, | 716 std::vector<VideoCodecSettings> before, |
712 std::vector<VideoCodecSettings> after) { | 717 std::vector<VideoCodecSettings> after) { |
713 if (before.size() != after.size()) { | 718 if (before.size() != after.size()) { |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
962 MapCodecs(params.codecs); | 967 MapCodecs(params.codecs); |
963 if (mapped_codecs.empty()) { | 968 if (mapped_codecs.empty()) { |
964 LOG(LS_ERROR) << "SetRecvParameters called without any video codecs."; | 969 LOG(LS_ERROR) << "SetRecvParameters called without any video codecs."; |
965 return false; | 970 return false; |
966 } | 971 } |
967 | 972 |
968 // Verify that every mapped codec is supported locally. | 973 // Verify that every mapped codec is supported locally. |
969 const std::vector<VideoCodec> local_supported_codecs = | 974 const std::vector<VideoCodec> local_supported_codecs = |
970 GetSupportedCodecs(external_encoder_factory_); | 975 GetSupportedCodecs(external_encoder_factory_); |
971 for (const VideoCodecSettings& mapped_codec : mapped_codecs) { | 976 for (const VideoCodecSettings& mapped_codec : mapped_codecs) { |
972 if (!IsCodecSupported(local_supported_codecs, mapped_codec.codec)) { | 977 if (!FindMatchingCodec(local_supported_codecs, mapped_codec.codec)) { |
973 LOG(LS_ERROR) << "SetRecvParameters called with unsupported video codec: " | 978 LOG(LS_ERROR) << "SetRecvParameters called with unsupported video codec: " |
974 << mapped_codec.codec.ToString(); | 979 << mapped_codec.codec.ToString(); |
975 return false; | 980 return false; |
976 } | 981 } |
977 } | 982 } |
978 | 983 |
979 if (ReceiveCodecsHaveChanged(recv_codecs_, mapped_codecs)) { | 984 if (ReceiveCodecsHaveChanged(recv_codecs_, mapped_codecs)) { |
980 changed_params->codec_settings = | 985 changed_params->codec_settings = |
981 rtc::Optional<std::vector<VideoCodecSettings>>(mapped_codecs); | 986 rtc::Optional<std::vector<VideoCodecSettings>>(mapped_codecs); |
982 } | 987 } |
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2574 rtx_mapping[video_codecs[i].codec.id] != | 2579 rtx_mapping[video_codecs[i].codec.id] != |
2575 ulpfec_config.red_payload_type) { | 2580 ulpfec_config.red_payload_type) { |
2576 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; | 2581 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; |
2577 } | 2582 } |
2578 } | 2583 } |
2579 | 2584 |
2580 return video_codecs; | 2585 return video_codecs; |
2581 } | 2586 } |
2582 | 2587 |
2583 } // namespace cricket | 2588 } // namespace cricket |
OLD | NEW |