blob: 2968a2288537ef1322d33b1e7b2e3285fa445d6e [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001/*
2 * Copyright (c) 2013 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
pbos@webrtc.org12dc1a32013-08-05 16:22:53 +000011#include <stdio.h>
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000012
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "modules/audio_coding/neteq/tools/neteq_test.h"
Ivo Creusen55de08e2018-09-03 11:49:27 +020014#include "modules/audio_coding/neteq/tools/neteq_test_factory.h"
henrik.lundin303d3e12016-05-26 05:56:03 -070015
16int main(int argc, char* argv[]) {
Ivo Creusen55de08e2018-09-03 11:49:27 +020017 webrtc::test::NetEqTestFactory factory;
18 std::unique_ptr<webrtc::test::NetEqTest> test =
19 factory.InitializeTest(argc, argv);
20 test->Run();
21 return 0;
henrik.lundin303d3e12016-05-26 05:56:03 -070022}