/*
 *  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 <stddef.h>
#include <stdint.h>

#include "modules/rtp_rtcp/source/rtp_format.h"
#include "modules/rtp_rtcp/source/rtp_format_vp8.h"
#include "modules/video_coding/codecs/interface/common_constants.h"
#include "modules/video_coding/codecs/vp8/include/vp8_globals.h"
#include "test/fuzzers/fuzz_data_helper.h"
#include "test/fuzzers/utils/validate_rtp_packetizer.h"

namespace webrtc {
void FuzzOneInput(FuzzDataHelper fuzz_data) {
  RtpPacketizer::PayloadSizeLimits limits = ReadPayloadSizeLimits(fuzz_data);

  RTPVideoHeaderVP8 hdr_info;
  hdr_info.InitRTPVideoHeaderVP8();
  uint16_t picture_id = fuzz_data.ReadOrDefaultValue<uint16_t>(0);
  hdr_info.pictureId =
      picture_id >= 0x8000 ? kNoPictureId : picture_id & 0x7fff;

  // Main function under test: RtpPacketizerVp8's constructor.
  RtpPacketizerVp8 packetizer(fuzz_data.ReadRemaining(), limits, hdr_info);

  ValidateRtpPacketizer(limits, packetizer);
}
}  // namespace webrtc
