// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <stdint.h> #include <vector> #include "base/containers/span.h" #include "media/formats/ac3/ac3_util.h" #include "third_party/fuzztest/src/fuzztest/fuzztest.h" namespace media { void ParseTotalAc3SampleCountNeverCrashes(base::span<const uint8_t> buffer) { … } FUZZ_TEST(…); void ParseTotalEac3SampleCountNeverCrashes(base::span<const uint8_t> buffer) { … } FUZZ_TEST(…); } // namespace media