mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

The fuzzer will hammer on the UpdateSid and Generate methods of ComfortNoiseDecoder. The change also includes a fix to an issue in WebRtcSpl_FilterAR, which was immediately found by running the fuzzer locally. Bug: none Change-Id: I5283427cb27844fb953e2caa35423ea873aca2ff Reviewed-on: https://webrtc-review.googlesource.com/28100 Commit-Queue: Henrik Lundin <henrik.lundin@webrtc.org> Reviewed-by: Sam Zackrisson <saza@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21134}
20 lines
628 B
C++
20 lines
628 B
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 "test/fuzzers/fuzz_data_helper.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
FuzzDataHelper::FuzzDataHelper(rtc::ArrayView<const uint8_t> data)
|
|
: data_(data) {}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|