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 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1402 stream != send_streams_.end(); ++stream) { | 1402 stream != send_streams_.end(); ++stream) { |
1403 stream->second->FillBandwidthEstimationInfo(&bwe_info); | 1403 stream->second->FillBandwidthEstimationInfo(&bwe_info); |
1404 } | 1404 } |
1405 video_media_info->bw_estimations.push_back(bwe_info); | 1405 video_media_info->bw_estimations.push_back(bwe_info); |
1406 } | 1406 } |
1407 | 1407 |
1408 void WebRtcVideoChannel2::FillSendAndReceiveCodecStats( | 1408 void WebRtcVideoChannel2::FillSendAndReceiveCodecStats( |
1409 VideoMediaInfo* video_media_info) { | 1409 VideoMediaInfo* video_media_info) { |
1410 for (const VideoCodec& codec : send_params_.codecs) { | 1410 for (const VideoCodec& codec : send_params_.codecs) { |
1411 webrtc::RtpCodecParameters codec_params = codec.ToCodecParameters(); | 1411 webrtc::RtpCodecParameters codec_params = codec.ToCodecParameters(); |
1412 RTC_DCHECK_GE(codec_params.payload_type, 0); | |
the sun
2016/11/16 19:41:07
Why are you DCHECKing this property here?
If the
hbos
2016/11/17 14:14:48
Since RtpCodecParameter and the data structure it
| |
1412 video_media_info->send_codecs.insert( | 1413 video_media_info->send_codecs.insert( |
1413 std::make_pair(codec_params.payload_type, std::move(codec_params))); | 1414 std::make_pair(static_cast<uint32_t>(codec_params.payload_type), |
1415 std::move(codec_params))); | |
1414 } | 1416 } |
1415 for (const VideoCodec& codec : recv_params_.codecs) { | 1417 for (const VideoCodec& codec : recv_params_.codecs) { |
1416 webrtc::RtpCodecParameters codec_params = codec.ToCodecParameters(); | 1418 webrtc::RtpCodecParameters codec_params = codec.ToCodecParameters(); |
1419 RTC_DCHECK_GE(codec_params.payload_type, 0); | |
1417 video_media_info->receive_codecs.insert( | 1420 video_media_info->receive_codecs.insert( |
1418 std::make_pair(codec_params.payload_type, std::move(codec_params))); | 1421 std::make_pair(static_cast<uint32_t>(codec_params.payload_type), |
1422 std::move(codec_params))); | |
1419 } | 1423 } |
1420 } | 1424 } |
1421 | 1425 |
1422 void WebRtcVideoChannel2::OnPacketReceived( | 1426 void WebRtcVideoChannel2::OnPacketReceived( |
1423 rtc::CopyOnWriteBuffer* packet, | 1427 rtc::CopyOnWriteBuffer* packet, |
1424 const rtc::PacketTime& packet_time) { | 1428 const rtc::PacketTime& packet_time) { |
1425 const webrtc::PacketTime webrtc_packet_time(packet_time.timestamp, | 1429 const webrtc::PacketTime webrtc_packet_time(packet_time.timestamp, |
1426 packet_time.not_before); | 1430 packet_time.not_before); |
1427 const webrtc::PacketReceiver::DeliveryStatus delivery_result = | 1431 const webrtc::PacketReceiver::DeliveryStatus delivery_result = |
1428 call_->Receiver()->DeliverPacket( | 1432 call_->Receiver()->DeliverPacket( |
(...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2590 rtx_mapping[video_codecs[i].codec.id] != | 2594 rtx_mapping[video_codecs[i].codec.id] != |
2591 ulpfec_config.red_payload_type) { | 2595 ulpfec_config.red_payload_type) { |
2592 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; | 2596 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; |
2593 } | 2597 } |
2594 } | 2598 } |
2595 | 2599 |
2596 return video_codecs; | 2600 return video_codecs; |
2597 } | 2601 } |
2598 | 2602 |
2599 } // namespace cricket | 2603 } // namespace cricket |
OLD | NEW |