mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

1. Depacketize single nalu packet/AP/FU 2. Insert start code before each nalu Bug: webrtc:13485 Change-Id: I8346f9c31e61e5d3c2c7e1bf5fdaae4018a1ff78 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/325660 Reviewed-by: Sergey Silkin <ssilkin@webrtc.org> Commit-Queue: Sergey Silkin <ssilkin@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41628}
19 lines
709 B
C++
19 lines
709 B
C++
/*
|
|
* Copyright (c) 2024 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/video_rtp_depacketizer_h265.h"
|
|
|
|
namespace webrtc {
|
|
void FuzzOneInput(const uint8_t* data, size_t size) {
|
|
if (size > 200000)
|
|
return;
|
|
VideoRtpDepacketizerH265 depacketizer;
|
|
depacketizer.Parse(rtc::CopyOnWriteBuffer(data, size));
|
|
}
|
|
} // namespace webrtc
|