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

Side by Side Diff: webrtc/test/fuzzers/flexfec_receiver_fuzzer.cc

Issue 2553863003: Parse FlexFEC RTP headers in Call and add integration with BWE. (Closed)
Patch Set: Add basic CongestionController unit test, based on nisse's suggestion. Created 4 years 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
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_packet.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 #include <algorithm> 11 #include <algorithm>
12 12
13 #include "webrtc/base/basictypes.h" 13 #include "webrtc/base/basictypes.h"
14 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" 14 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
15 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" 15 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h"
16 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 16 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
17 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h"
17 18
18 namespace webrtc { 19 namespace webrtc {
19 20
20 namespace { 21 namespace {
21 class DummyCallback : public RecoveredPacketReceiver { 22 class DummyCallback : public RecoveredPacketReceiver {
22 bool OnRecoveredPacket(const uint8_t* packet, size_t length) { return true; } 23 bool OnRecoveredPacket(const uint8_t* packet, size_t length) { return true; }
23 }; 24 };
24 } // namespace 25 } // namespace
25 26
26 void FuzzOneInput(const uint8_t* data, size_t size) { 27 void FuzzOneInput(const uint8_t* data, size_t size) {
(...skipping 27 matching lines...) Expand all
54 i += packet_length; 55 i += packet_length;
55 if (i < size && data[i++] % 2 == 0) { 56 if (i < size && data[i++] % 2 == 0) {
56 // Simulate FlexFEC packet. 57 // Simulate FlexFEC packet.
57 ByteWriter<uint16_t>::WriteBigEndian(packet.get() + 2, flexfec_seq_num++); 58 ByteWriter<uint16_t>::WriteBigEndian(packet.get() + 2, flexfec_seq_num++);
58 ByteWriter<uint32_t>::WriteBigEndian(packet.get() + 8, flexfec_ssrc); 59 ByteWriter<uint32_t>::WriteBigEndian(packet.get() + 8, flexfec_ssrc);
59 } else { 60 } else {
60 // Simulate media packet. 61 // Simulate media packet.
61 ByteWriter<uint16_t>::WriteBigEndian(packet.get() + 2, media_seq_num++); 62 ByteWriter<uint16_t>::WriteBigEndian(packet.get() + 2, media_seq_num++);
62 ByteWriter<uint32_t>::WriteBigEndian(packet.get() + 8, media_ssrc); 63 ByteWriter<uint32_t>::WriteBigEndian(packet.get() + 8, media_ssrc);
63 } 64 }
64 receiver.AddAndProcessReceivedPacket(packet.get(), packet_length); 65 RtpPacketReceived parsed_packet;
66 if (parsed_packet.Parse(packet.get(), packet_length)) {
67 receiver.AddAndProcessReceivedPacket(parsed_packet);
68 }
65 } 69 }
66 } 70 }
67 71
68 } // namespace webrtc 72 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_packet.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698