OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
| 12 #include "webrtc/test/fuzzers/audio_processing_fuzzer.h" |
| 13 |
| 14 #include "webrtc/base/optional.h" |
| 15 |
| 16 namespace webrtc { |
| 17 |
| 18 std::unique_ptr<AudioProcessing> CreateAPM(const uint8_t** data, |
| 19 size_t* remaining_size) { |
| 20 // Parse boolean values for optionally enabling different |
| 21 // configurable public components of APM. |
| 22 auto exp_agc = ParseBool(data, remaining_size); |
| 23 auto exp_ns = ParseBool(data, remaining_size); |
| 24 auto bf = ParseBool(data, remaining_size); |
| 25 auto ef = ParseBool(data, remaining_size); |
| 26 auto raf = ParseBool(data, remaining_size); |
| 27 auto da = ParseBool(data, remaining_size); |
| 28 auto ie = ParseBool(data, remaining_size); |
| 29 auto red = ParseBool(data, remaining_size); |
| 30 auto lc = ParseBool(data, remaining_size); |
| 31 auto hpf = ParseBool(data, remaining_size); |
| 32 auto aec3 = ParseBool(data, remaining_size); |
| 33 |
| 34 if (!(exp_agc && exp_ns && bf && ef && raf && da && ie && red && lc && hpf && |
| 35 aec3)) { |
| 36 return nullptr; |
| 37 } |
| 38 |
| 39 // Components can be enabled through webrtc::Config and |
| 40 // webrtc::AudioProcessingConfig. |
| 41 Config config; |
| 42 |
| 43 config.Set<ExperimentalAgc>(new ExperimentalAgc(*exp_agc)); |
| 44 config.Set<ExperimentalNs>(new ExperimentalNs(*exp_ns)); |
| 45 if (*bf) { |
| 46 config.Set<Beamforming>(new Beamforming()); |
| 47 } |
| 48 config.Set<ExtendedFilter>(new ExtendedFilter(*ef)); |
| 49 config.Set<RefinedAdaptiveFilter>(new RefinedAdaptiveFilter(*raf)); |
| 50 config.Set<DelayAgnostic>(new DelayAgnostic(*da)); |
| 51 config.Set<Intelligibility>(new Intelligibility(*ie)); |
| 52 |
| 53 std::unique_ptr<AudioProcessing> apm(AudioProcessing::Create(config)); |
| 54 |
| 55 webrtc::AudioProcessing::Config apm_config; |
| 56 apm_config.residual_echo_detector.enabled = *red; |
| 57 apm_config.level_controller.enabled = *lc; |
| 58 apm_config.high_pass_filter.enabled = *hpf; |
| 59 apm_config.echo_canceller3.enabled = *aec3; |
| 60 |
| 61 apm->ApplyConfig(apm_config); |
| 62 |
| 63 return apm; |
| 64 } |
| 65 |
| 66 void FuzzOneInput(const uint8_t* data, size_t size) { |
| 67 auto apm = CreateAPM(&data, &size); |
| 68 FuzzAudioProcessing(data, size, std::move(apm)); |
| 69 } |
| 70 } // namespace webrtc |
OLD | NEW |