Reland "Add AV1 RtpDepacketizer class"
This is a reland of 49470c2ac460ed8cce250942e8525c5f14e32778 Tentative reland to rule-out bot flakiness. Original change's description: > Add AV1 RtpDepacketizer class > > Implement Parse function that extracts is_first_packet_in_frame, > is_last_packet_in_frame, and frame_type fields. > > Bug: webrtc:11042 > Change-Id: I9360ea52ef274281b5c5e4c31955100b92155bfe > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/159180 > Reviewed-by: Philip Eliasson <philipel@webrtc.org> > Reviewed-by: Sam Zackrisson <saza@webrtc.org> > Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#29814} TBR=saza@webrtc.org,philipel@webrtc.org Bug: webrtc:11042 Change-Id: Ibd672ce685bcab86960500740465539ed70fcdf4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/159941 Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29819}
This commit is contained in:
committed by
Commit Bot
parent
cb0b87473a
commit
ccf12c6e97
18
test/fuzzers/rtp_depacketizer_av1_parse_fuzzer.cc
Normal file
18
test/fuzzers/rtp_depacketizer_av1_parse_fuzzer.cc
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Copyright (c) 2019 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/rtp_rtcp/source/rtp_depacketizer_av1.h"
|
||||
|
||||
namespace webrtc {
|
||||
void FuzzOneInput(const uint8_t* data, size_t size) {
|
||||
RtpDepacketizerAv1 depacketizer;
|
||||
RtpDepacketizer::ParsedPayload parsed_payload;
|
||||
depacketizer.Parse(&parsed_payload, data, size);
|
||||
}
|
||||
} // namespace webrtc
|
||||
Reference in New Issue
Block a user