OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |