| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 11 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
| 12 #include "webrtc/test/fuzzers/audio_processing_fuzzer.h" | 12 #include "webrtc/test/fuzzers/audio_processing_fuzzer.h" |
| 13 | 13 |
| 14 #include "webrtc/base/optional.h" | 14 #include "webrtc/rtc_base/optional.h" |
| 15 | 15 |
| 16 namespace webrtc { | 16 namespace webrtc { |
| 17 | 17 |
| 18 std::unique_ptr<AudioProcessing> CreateAPM(const uint8_t** data, | 18 std::unique_ptr<AudioProcessing> CreateAPM(const uint8_t** data, |
| 19 size_t* remaining_size) { | 19 size_t* remaining_size) { |
| 20 // Parse boolean values for optionally enabling different | 20 // Parse boolean values for optionally enabling different |
| 21 // configurable public components of APM. | 21 // configurable public components of APM. |
| 22 auto exp_agc = ParseBool(data, remaining_size); | 22 auto exp_agc = ParseBool(data, remaining_size); |
| 23 auto exp_ns = ParseBool(data, remaining_size); | 23 auto exp_ns = ParseBool(data, remaining_size); |
| 24 auto bf = ParseBool(data, remaining_size); | 24 auto bf = ParseBool(data, remaining_size); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 apm->ApplyConfig(apm_config); | 61 apm->ApplyConfig(apm_config); |
| 62 | 62 |
| 63 return apm; | 63 return apm; |
| 64 } | 64 } |
| 65 | 65 |
| 66 void FuzzOneInput(const uint8_t* data, size_t size) { | 66 void FuzzOneInput(const uint8_t* data, size_t size) { |
| 67 auto apm = CreateAPM(&data, &size); | 67 auto apm = CreateAPM(&data, &size); |
| 68 FuzzAudioProcessing(data, size, std::move(apm)); | 68 FuzzAudioProcessing(data, size, std::move(apm)); |
| 69 } | 69 } |
| 70 } // namespace webrtc | 70 } // namespace webrtc |
| OLD | NEW |