mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 22:30:40 +01:00

The motivation in https://webrtc-review.googlesource.com/c/src/+/32340/3 applies here as well. We would like to use this tool downstream. Bug: None Change-Id: Id5b23f792679ab9c07294bfb8e53119c423044b1 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161681 Commit-Queue: Daniel Johansson <dajo@webrtc.org> Reviewed-by: Daniel Johansson <dajo@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30051}
19 lines
682 B
C++
19 lines
682 B
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include <memory>
|
|
|
|
#include "api/test/audioproc_float.h"
|
|
#include "modules/audio_processing/include/audio_processing.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
return webrtc::test::AudioprocFloat(
|
|
std::make_unique<webrtc::AudioProcessingBuilder>(), argc, argv);
|
|
}
|