Together with RtpDepacketizer refactoring that would reduce number of memcpy while handling an rtp packet Bug: webrtc:11152 Change-Id: I6f4e09c93af5e2a9314967a15eac8ced57ec712e Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161087 Reviewed-by: Philip Eliasson <philipel@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29985}
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "modules/video_coding/frame_object.h"
|
|
#include "modules/video_coding/packet_buffer.h"
|
|
#include "system_wrappers/include/clock.h"
|
|
#include "test/fuzzers/fuzz_data_helper.h"
|
|
|
|
namespace webrtc {
|
|
|
|
void IgnoreResult(video_coding::PacketBuffer::InsertResult result) {}
|
|
|
|
void FuzzOneInput(const uint8_t* data, size_t size) {
|
|
if (size > 200000) {
|
|
return;
|
|
}
|
|
SimulatedClock clock(0);
|
|
video_coding::PacketBuffer packet_buffer(&clock, 8, 1024);
|
|
test::FuzzDataHelper helper(rtc::ArrayView<const uint8_t>(data, size));
|
|
|
|
while (helper.BytesLeft()) {
|
|
video_coding::PacketBuffer::Packet packet;
|
|
// Fuzz POD members of the packet.
|
|
helper.CopyTo(&packet.marker_bit);
|
|
helper.CopyTo(&packet.payload_type);
|
|
helper.CopyTo(&packet.seq_num);
|
|
helper.CopyTo(&packet.timestamp);
|
|
helper.CopyTo(&packet.ntp_time_ms);
|
|
helper.CopyTo(&packet.times_nacked);
|
|
|
|
// Fuzz non-POD member of the packet.
|
|
packet.video_payload.SetSize(helper.ReadOrDefaultValue<uint8_t>(0));
|
|
// TODO(danilchap): Fuzz other non-POD members of the |packet|.
|
|
|
|
IgnoreResult(packet_buffer.InsertPacket(&packet));
|
|
}
|
|
}
|
|
|
|
} // namespace webrtc
|