Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: webrtc/test/fuzzers/audio_processing_fuzzer_configs.cc

Issue 3011943002: Move optional.h to webrtc/api/ (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/test/fuzzers/audio_decoder_fuzzer.cc ('k') | webrtc/test/testsupport/fileutils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/rtc_base/optional.h" 14 #include "webrtc/api/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
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
OLDNEW
« no previous file with comments | « webrtc/test/fuzzers/audio_decoder_fuzzer.cc ('k') | webrtc/test/testsupport/fileutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698