blob: 7260eb06ffe95b6fc41b78b587ad4ca4f3aa3e88 [file] [log] [blame]
Ivo Creusen3ce44a32019-10-31 14:38:11 +01001/*
2 * Copyright (c) 2019 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
11#ifndef API_TEST_NETEQ_FACTORY_WITH_CODECS_H_
12#define API_TEST_NETEQ_FACTORY_WITH_CODECS_H_
13
14#include <memory>
15
16#include "api/neteq/neteq_factory.h"
17
18namespace webrtc {
19
20// This NetEq factory will use WebRTC's built-in AudioDecoders as well as the
21// built-in NetEqController logic.
22std::unique_ptr<NetEqFactory> CreateNetEqFactoryWithCodecs();
23
24} // namespace webrtc
25#endif // API_TEST_NETEQ_FACTORY_WITH_CODECS_H_