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

Side by Side Diff: webrtc/call/call.cc

Issue 2783853002: Reland of Don't hardcode MediaType::ANY in FakeNetworkPipe. (Closed)
Patch Set: Fix braces. Add comment on use of demuxer. Created 3 years, 8 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after
1214 1214
1215 return rtcp_delivered ? DELIVERY_OK : DELIVERY_PACKET_ERROR; 1215 return rtcp_delivered ? DELIVERY_OK : DELIVERY_PACKET_ERROR;
1216 } 1216 }
1217 1217
1218 PacketReceiver::DeliveryStatus Call::DeliverRtp(MediaType media_type, 1218 PacketReceiver::DeliveryStatus Call::DeliverRtp(MediaType media_type,
1219 const uint8_t* packet, 1219 const uint8_t* packet,
1220 size_t length, 1220 size_t length,
1221 const PacketTime& packet_time) { 1221 const PacketTime& packet_time) {
1222 TRACE_EVENT0("webrtc", "Call::DeliverRtp"); 1222 TRACE_EVENT0("webrtc", "Call::DeliverRtp");
1223 1223
1224 RTC_DCHECK(media_type == MediaType::AUDIO || media_type == MediaType::VIDEO);
1225
1224 ReadLockScoped read_lock(*receive_crit_); 1226 ReadLockScoped read_lock(*receive_crit_);
1225 // TODO(nisse): We should parse the RTP header only here, and pass 1227 // TODO(nisse): We should parse the RTP header only here, and pass
1226 // on parsed_packet to the receive streams. 1228 // on parsed_packet to the receive streams.
1227 rtc::Optional<RtpPacketReceived> parsed_packet = 1229 rtc::Optional<RtpPacketReceived> parsed_packet =
1228 ParseRtpPacket(packet, length, packet_time); 1230 ParseRtpPacket(packet, length, packet_time);
1229 1231
1230 if (!parsed_packet) 1232 if (!parsed_packet)
1231 return DELIVERY_PACKET_ERROR; 1233 return DELIVERY_PACKET_ERROR;
1232 1234
1233 NotifyBweOfReceivedPacket(*parsed_packet, media_type); 1235 NotifyBweOfReceivedPacket(*parsed_packet, media_type);
1234 1236
1235 uint32_t ssrc = parsed_packet->Ssrc(); 1237 uint32_t ssrc = parsed_packet->Ssrc();
1236 1238
1237 if (media_type == MediaType::ANY || media_type == MediaType::AUDIO) { 1239 if (media_type == MediaType::AUDIO) {
1238 auto it = audio_receive_ssrcs_.find(ssrc); 1240 auto it = audio_receive_ssrcs_.find(ssrc);
1239 if (it != audio_receive_ssrcs_.end()) { 1241 if (it != audio_receive_ssrcs_.end()) {
1240 received_bytes_per_second_counter_.Add(static_cast<int>(length)); 1242 received_bytes_per_second_counter_.Add(static_cast<int>(length));
1241 received_audio_bytes_per_second_counter_.Add(static_cast<int>(length)); 1243 received_audio_bytes_per_second_counter_.Add(static_cast<int>(length));
1242 it->second->OnRtpPacket(*parsed_packet); 1244 it->second->OnRtpPacket(*parsed_packet);
1243 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length); 1245 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
1244 return DELIVERY_OK; 1246 return DELIVERY_OK;
1245 } 1247 }
1246 } 1248 }
1247 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) { 1249 if (media_type == MediaType::VIDEO) {
1248 auto it = video_receive_ssrcs_.find(ssrc); 1250 auto it = video_receive_ssrcs_.find(ssrc);
1249 if (it != video_receive_ssrcs_.end()) { 1251 if (it != video_receive_ssrcs_.end()) {
1250 received_bytes_per_second_counter_.Add(static_cast<int>(length)); 1252 received_bytes_per_second_counter_.Add(static_cast<int>(length));
1251 received_video_bytes_per_second_counter_.Add(static_cast<int>(length)); 1253 received_video_bytes_per_second_counter_.Add(static_cast<int>(length));
1252 it->second->OnRtpPacket(*parsed_packet); 1254 it->second->OnRtpPacket(*parsed_packet);
1253 1255
1254 // Deliver media packets to FlexFEC subsystem. 1256 // Deliver media packets to FlexFEC subsystem.
1255 auto it_bounds = flexfec_receive_ssrcs_media_.equal_range(ssrc); 1257 auto it_bounds = flexfec_receive_ssrcs_media_.equal_range(ssrc);
1256 for (auto it = it_bounds.first; it != it_bounds.second; ++it) 1258 for (auto it = it_bounds.first; it != it_bounds.second; ++it)
1257 it->second->OnRtpPacket(*parsed_packet); 1259 it->second->OnRtpPacket(*parsed_packet);
1258 1260
1259 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length); 1261 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
1260 return DELIVERY_OK; 1262 return DELIVERY_OK;
1261 } 1263 }
1262 } 1264 }
1263 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) { 1265 if (media_type == MediaType::VIDEO) {
1264 received_bytes_per_second_counter_.Add(static_cast<int>(length)); 1266 received_bytes_per_second_counter_.Add(static_cast<int>(length));
1265 // TODO(brandtr): Update here when FlexFEC supports protecting audio. 1267 // TODO(brandtr): Update here when FlexFEC supports protecting audio.
1266 received_video_bytes_per_second_counter_.Add(static_cast<int>(length)); 1268 received_video_bytes_per_second_counter_.Add(static_cast<int>(length));
1267 auto it = flexfec_receive_ssrcs_protection_.find(ssrc); 1269 auto it = flexfec_receive_ssrcs_protection_.find(ssrc);
1268 if (it != flexfec_receive_ssrcs_protection_.end()) { 1270 if (it != flexfec_receive_ssrcs_protection_.end()) {
1269 it->second->OnRtpPacket(*parsed_packet); 1271 it->second->OnRtpPacket(*parsed_packet);
1270 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length); 1272 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
1271 return DELIVERY_OK; 1273 return DELIVERY_OK;
1272 } 1274 }
1273 } 1275 }
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1313 // Inconsistent configuration of send side BWE. Do nothing. 1315 // Inconsistent configuration of send side BWE. Do nothing.
1314 // TODO(nisse): Without this check, we may produce RTCP feedback 1316 // TODO(nisse): Without this check, we may produce RTCP feedback
1315 // packets even when not negotiated. But it would be cleaner to 1317 // packets even when not negotiated. But it would be cleaner to
1316 // move the check down to RTCPSender::SendFeedbackPacket, which 1318 // move the check down to RTCPSender::SendFeedbackPacket, which
1317 // would also help the PacketRouter to select an appropriate rtp 1319 // would also help the PacketRouter to select an appropriate rtp
1318 // module in the case that some, but not all, have RTCP feedback 1320 // module in the case that some, but not all, have RTCP feedback
1319 // enabled. 1321 // enabled.
1320 return; 1322 return;
1321 } 1323 }
1322 // For audio, we only support send side BWE. 1324 // For audio, we only support send side BWE.
1323 // TODO(nisse): Tests passes MediaType::ANY, see 1325 if (media_type == MediaType::VIDEO ||
1324 // FakeNetworkPipe::Process. We need to treat that as video. Tests
1325 // should be fixed to use the same MediaType as the production code.
1326 if (media_type != MediaType::AUDIO ||
1327 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) { 1326 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) {
1328 receive_side_cc_.OnReceivedPacket( 1327 receive_side_cc_.OnReceivedPacket(
1329 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(), 1328 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(),
1330 header); 1329 header);
1331 } 1330 }
1332 } 1331 }
1333 1332
1334 } // namespace internal 1333 } // namespace internal
1335 1334
1336 } // namespace webrtc 1335 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698