Henrik Lundin | fe32a76 | 2015-12-08 11:27:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 11 | #ifndef TEST_FUZZERS_AUDIO_DECODER_FUZZER_H_ |
| 12 | #define TEST_FUZZERS_AUDIO_DECODER_FUZZER_H_ |
Henrik Lundin | fe32a76 | 2015-12-08 11:27:27 +0100 | [diff] [blame] | 13 | |
| 14 | #include <stddef.h> |
| 15 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 16 | #include "typedefs.h" |
Henrik Lundin | fe32a76 | 2015-12-08 11:27:27 +0100 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
| 19 | |
| 20 | class AudioDecoder; |
| 21 | |
henrik.lundin | fd2be27 | 2016-02-09 00:00:23 -0800 | [diff] [blame] | 22 | enum class DecoderFunctionType { |
| 23 | kNormalDecode, |
| 24 | kRedundantDecode, |
| 25 | }; |
| 26 | |
| 27 | void FuzzAudioDecoder(DecoderFunctionType decode_type, |
| 28 | const uint8_t* data, |
Henrik Lundin | fe32a76 | 2015-12-08 11:27:27 +0100 | [diff] [blame] | 29 | size_t size, |
| 30 | AudioDecoder* decoder, |
| 31 | int sample_rate_hz, |
| 32 | size_t max_decoded_bytes, |
| 33 | int16_t* decoded); |
| 34 | |
henrik.lundin | fd2be27 | 2016-02-09 00:00:23 -0800 | [diff] [blame] | 35 | void FuzzAudioDecoderIncomingPacket(const uint8_t* data, |
| 36 | size_t size, |
| 37 | AudioDecoder* decoder); |
Henrik Lundin | fe32a76 | 2015-12-08 11:27:27 +0100 | [diff] [blame] | 38 | } // namespace webrtc |
| 39 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 40 | #endif // TEST_FUZZERS_AUDIO_DECODER_FUZZER_H_ |