2018-03-09 17:33:04 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-03-15 12:22:52 +01:00
|
|
|
#ifndef MODULES_AUDIO_PROCESSING_TEST_AUDIOPROC_FLOAT_IMPL_H_
|
|
|
|
|
#define MODULES_AUDIO_PROCESSING_TEST_AUDIOPROC_FLOAT_IMPL_H_
|
2018-03-09 17:33:04 +01:00
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
2024-10-24 14:46:15 +02:00
|
|
|
#include "absl/base/nullability.h"
|
2024-04-19 15:07:08 +00:00
|
|
|
#include "api/audio/audio_processing.h"
|
2024-10-24 14:46:15 +02:00
|
|
|
#include "api/scoped_refptr.h"
|
2018-03-09 17:33:04 +01:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
2024-10-24 14:46:15 +02:00
|
|
|
int AudioprocFloatImpl(
|
|
|
|
|
absl::Nullable<scoped_refptr<AudioProcessing>> audio_processing,
|
|
|
|
|
int argc,
|
|
|
|
|
char* argv[]);
|
|
|
|
|
|
|
|
|
|
int AudioprocFloatImpl(
|
|
|
|
|
absl::Nullable<std::unique_ptr<AudioProcessingBuilder>> ap_builder,
|
|
|
|
|
int argc,
|
|
|
|
|
char* argv[]);
|
2018-03-09 17:33:04 +01:00
|
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2018-03-15 12:22:52 +01:00
|
|
|
#endif // MODULES_AUDIO_PROCESSING_TEST_AUDIOPROC_FLOAT_IMPL_H_
|