OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 EXPECT_TRUE(fec_packet->HasExtension<AbsoluteSendTime>()); | 247 EXPECT_TRUE(fec_packet->HasExtension<AbsoluteSendTime>()); |
248 EXPECT_TRUE(fec_packet->HasExtension<TransmissionOffset>()); | 248 EXPECT_TRUE(fec_packet->HasExtension<TransmissionOffset>()); |
249 EXPECT_TRUE(fec_packet->HasExtension<TransportSequenceNumber>()); | 249 EXPECT_TRUE(fec_packet->HasExtension<TransportSequenceNumber>()); |
250 } | 250 } |
251 | 251 |
252 TEST(FlexfecSenderTest, MaxPacketOverhead) { | 252 TEST(FlexfecSenderTest, MaxPacketOverhead) { |
253 SimulatedClock clock(kInitialSimulatedClockTime); | 253 SimulatedClock clock(kInitialSimulatedClockTime); |
254 FlexfecSender sender(kFlexfecPayloadType, kFlexfecSsrc, kMediaSsrc, | 254 FlexfecSender sender(kFlexfecPayloadType, kFlexfecSsrc, kMediaSsrc, |
255 kNoRtpHeaderExtensions, &clock); | 255 kNoRtpHeaderExtensions, &clock); |
256 | 256 |
257 EXPECT_EQ(kFlexfecMaxHeaderSize, sender.MaxPacketOverhead()); | 257 EXPECT_EQ(kFlexfecMaxHeaderSize, |
| 258 sender.MaxPacketOverhead({} /* extension_sizes */)); |
258 } | 259 } |
259 | 260 |
260 } // namespace webrtc | 261 } // namespace webrtc |
OLD | NEW |