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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc

Issue 1935753002: Revert of Remove VCMQmRobustness. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after
1286 expected.transmitted.padding_bytes = kMaxPaddingSize; 1286 expected.transmitted.padding_bytes = kMaxPaddingSize;
1287 expected.transmitted.packets = 3; 1287 expected.transmitted.packets = 3;
1288 callback.Matches(ssrc, expected); 1288 callback.Matches(ssrc, expected);
1289 1289
1290 // Send FEC. 1290 // Send FEC.
1291 rtp_sender_->SetGenericFECStatus(true, kRedPayloadType, kUlpfecPayloadType); 1291 rtp_sender_->SetGenericFECStatus(true, kRedPayloadType, kUlpfecPayloadType);
1292 FecProtectionParams fec_params; 1292 FecProtectionParams fec_params;
1293 fec_params.fec_mask_type = kFecMaskRandom; 1293 fec_params.fec_mask_type = kFecMaskRandom;
1294 fec_params.fec_rate = 1; 1294 fec_params.fec_rate = 1;
1295 fec_params.max_fec_frames = 1; 1295 fec_params.max_fec_frames = 1;
1296 fec_params.use_uep_protection = false;
1296 rtp_sender_->SetFecParameters(&fec_params, &fec_params); 1297 rtp_sender_->SetFecParameters(&fec_params, &fec_params);
1297 ASSERT_EQ(0, rtp_sender_->SendOutgoingData(kVideoFrameDelta, payload_type, 1298 ASSERT_EQ(0, rtp_sender_->SendOutgoingData(kVideoFrameDelta, payload_type,
1298 1234, 4321, payload, 1299 1234, 4321, payload,
1299 sizeof(payload), nullptr)); 1300 sizeof(payload), nullptr));
1300 expected.transmitted.payload_bytes = 40; 1301 expected.transmitted.payload_bytes = 40;
1301 expected.transmitted.header_bytes = 60; 1302 expected.transmitted.header_bytes = 60;
1302 expected.transmitted.packets = 5; 1303 expected.transmitted.packets = 5;
1303 expected.fec.packets = 1; 1304 expected.fec.packets = 1;
1304 callback.Matches(ssrc, expected); 1305 callback.Matches(ssrc, expected);
1305 1306
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
1521 reinterpret_cast<uint8_t*>(transport_.sent_packets_[0]->data()), 1522 reinterpret_cast<uint8_t*>(transport_.sent_packets_[0]->data()),
1522 transport_.sent_packets_[0]->size(), true, &map, kSeqNum, hdr.rotation); 1523 transport_.sent_packets_[0]->size(), true, &map, kSeqNum, hdr.rotation);
1523 1524
1524 // Verify that this packet does have CVO byte. 1525 // Verify that this packet does have CVO byte.
1525 VerifyCVOPacket( 1526 VerifyCVOPacket(
1526 reinterpret_cast<uint8_t*>(transport_.sent_packets_[1]->data()), 1527 reinterpret_cast<uint8_t*>(transport_.sent_packets_[1]->data()),
1527 transport_.sent_packets_[1]->size(), true, &map, kSeqNum + 1, 1528 transport_.sent_packets_[1]->size(), true, &map, kSeqNum + 1,
1528 hdr.rotation); 1529 hdr.rotation);
1529 } 1530 }
1530 } // namespace webrtc 1531 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc ('k') | webrtc/modules/video_coding/media_opt_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698