2013-01-29 12:09:21 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-05 16:22:53 +00:00
|
|
|
#include <stdio.h>
|
2013-01-29 12:09:21 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/audio_coding/neteq/tools/neteq_test.h"
|
2018-09-03 11:49:27 +02:00
|
|
|
#include "modules/audio_coding/neteq/tools/neteq_test_factory.h"
|
2016-05-26 05:56:03 -07:00
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
2018-09-03 11:49:27 +02:00
|
|
|
webrtc::test::NetEqTestFactory factory;
|
|
|
|
|
std::unique_ptr<webrtc::test::NetEqTest> test =
|
|
|
|
|
factory.InitializeTest(argc, argv);
|
|
|
|
|
test->Run();
|
|
|
|
|
return 0;
|
2016-05-26 05:56:03 -07:00
|
|
|
}
|