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

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

Issue 2867713003: Remove hardcoded kValueSizeBytes values from variable-length header extensions. (Closed)
Patch Set: Patch 3 Created 3 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) 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698